-
-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d2a85a
commit b1615f5
Showing
6 changed files
with
133 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks> | ||
<LangVersion>latest</LangVersion> | ||
<PackageIcon>logo_64x64.png</PackageIcon> | ||
<IsPackable>true</IsPackable> | ||
<!-- Ignore: The target framework '...' is out of support and will not receive security updates in the future --> | ||
<NoWarn>$(NoWarn);NETSDK1138</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="../Assets/logo_64x64.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Fluid\Fluid.csproj" /> | ||
<ProjectReference Include="..\Fluid.ViewEngine\Fluid.ViewEngine.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="8.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="9.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Fluid\ExceptionHelper.cs"> | ||
<Link>ExceptionHelper.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks> | ||
<LangVersion>latest</LangVersion> | ||
<PackageIcon>logo_64x64.png</PackageIcon> | ||
<IsPackable>true</IsPackable> | ||
<!-- Ignore: The target framework '...' is out of support and will not receive security updates in the future --> | ||
<NoWarn>$(NoWarn);NETSDK1138</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="../Assets/logo_64x64.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Fluid\Fluid.csproj" /> | ||
<ProjectReference Include="..\Fluid.ViewEngine\Fluid.ViewEngine.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="8.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="9.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Fluid\ExceptionHelper.cs"> | ||
<Link>ExceptionHelper.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,56 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net9.0</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<LangVersion>latest</LangVersion> | ||
<IsPackable>true</IsPackable> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<!-- Ingore missing comments errors and obsolete TFMs --> | ||
<NoWarn>$(NoWarn);CS1591;NETSDK1138</NoWarn> | ||
|
||
<AnalysisLevel>latest-Recommended</AnalysisLevel> | ||
<NoWarn>$(NoWarn);CA1016</NoWarn> | ||
<!-- CA1016: Mark assemblies with AssemblyVersionAttribute --> | ||
<NoWarn>$(NoWarn);CA1051</NoWarn> | ||
<!-- CA1051: Do not declare visible instance fields --> | ||
<NoWarn>$(NoWarn);CA1200</NoWarn> | ||
<!-- CA1200: Avoid using cref tags with a prefix --> | ||
<NoWarn>$(NoWarn);CA1304</NoWarn> | ||
<!-- CA1304: Specify CultureInfo --> | ||
<NoWarn>$(NoWarn);CA1305</NoWarn> | ||
<!-- CA1305: Specify IFormatProvider --> | ||
<NoWarn>$(NoWarn);CA1310</NoWarn> | ||
<!-- CA1310: Specify StringComparison --> | ||
<NoWarn>$(NoWarn);CA1711</NoWarn> | ||
<!-- CA1711: Identifiers should not have incorrect suffix --> | ||
<NoWarn>$(NoWarn);CA1716</NoWarn> | ||
<!-- CA1716: Identifiers should not match keywords --> | ||
<NoWarn>$(NoWarn);CA1720</NoWarn> | ||
<!-- CA1720: Identifier contains type name --> | ||
<NoWarn>$(NoWarn);CA1805</NoWarn> | ||
<!-- CA1805: Do not initialize unnecessarily --> | ||
<NoWarn>$(NoWarn);CA1863</NoWarn> | ||
<!-- CA1863: Cache a 'CompositeFormat' for repeated use in this formatting operation --> | ||
<NoWarn>$(NoWarn);CA2012</NoWarn> | ||
<!-- CA2012: Use ValueTasks correctly --> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Parlot" /> | ||
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" /> | ||
<PackageReference Include="TimeZoneConverter" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> | ||
<PackageReference Include="System.Text.Json" /> | ||
<PackageReference Include="Microsoft.CSharp" /> | ||
<PackageReference Include="System.Reflection.Emit.Lightweight" /> | ||
</ItemGroup> | ||
|
||
<!-- Keep specific targets since it removes some dependencies --> | ||
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'"> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'"> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'"> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net9.0</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<LangVersion>latest</LangVersion> | ||
<IsPackable>true</IsPackable> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<!-- Ingore missing comments errors and obsolete TFMs --> | ||
<NoWarn>$(NoWarn);CS1591;NETSDK1138</NoWarn> | ||
|
||
<AnalysisLevel>latest-Recommended</AnalysisLevel> | ||
<NoWarn>$(NoWarn);CA1016</NoWarn> <!-- CA1016: Mark assemblies with AssemblyVersionAttribute --> | ||
<NoWarn>$(NoWarn);CA1051</NoWarn> <!-- CA1051: Do not declare visible instance fields --> | ||
<NoWarn>$(NoWarn);CA1200</NoWarn> <!-- CA1200: Avoid using cref tags with a prefix --> | ||
<NoWarn>$(NoWarn);CA1304</NoWarn> <!-- CA1304: Specify CultureInfo --> | ||
<NoWarn>$(NoWarn);CA1305</NoWarn> <!-- CA1305: Specify IFormatProvider --> | ||
<NoWarn>$(NoWarn);CA1310</NoWarn> <!-- CA1310: Specify StringComparison --> | ||
<NoWarn>$(NoWarn);CA1711</NoWarn> <!-- CA1711: Identifiers should not have incorrect suffix --> | ||
<NoWarn>$(NoWarn);CA1716</NoWarn> <!-- CA1716: Identifiers should not match keywords --> | ||
<NoWarn>$(NoWarn);CA1720</NoWarn> <!-- CA1720: Identifier contains type name --> | ||
<NoWarn>$(NoWarn);CA1805</NoWarn> <!-- CA1805: Do not initialize unnecessarily --> | ||
<NoWarn>$(NoWarn);CA1863</NoWarn> <!-- CA1863: Cache a 'CompositeFormat' for repeated use in this formatting operation --> | ||
<NoWarn>$(NoWarn);CA2012</NoWarn> <!-- CA2012: Use ValueTasks correctly --> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Parlot" /> | ||
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" /> | ||
<PackageReference Include="TimeZoneConverter" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> | ||
<PackageReference Include="System.Text.Json" /> | ||
<PackageReference Include="Microsoft.CSharp" /> | ||
<PackageReference Include="System.Reflection.Emit.Lightweight" /> | ||
</ItemGroup> | ||
|
||
<!-- Keep specific targets since it removes some dependencies --> | ||
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'"> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'"> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'"> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks> | ||
<LangVersion>9</LangVersion> | ||
<IsPackable>true</IsPackable> | ||
<PackageIcon>logo_64x64.png</PackageIcon> | ||
<PackageId>MinimalApis.LiquidViews</PackageId> | ||
<Description>MinimalApis.LiquidViews is a view engine for ASP.NET Core Minimal APIs based on the Liquid templating language.</Description> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks> | ||
<LangVersion>9</LangVersion> | ||
<IsPackable>true</IsPackable> | ||
<PackageIcon>logo_64x64.png</PackageIcon> | ||
<PackageId>MinimalApis.LiquidViews</PackageId> | ||
<Description>MinimalApis.LiquidViews is a view engine for ASP.NET Core Minimal APIs based on the Liquid templating language.</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="../Assets/logo_64x64.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="../Assets/logo_64x64.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Fluid.ViewEngine\Fluid.ViewEngine.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Fluid.ViewEngine\Fluid.ViewEngine.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" VersionOverride="8.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" VersionOverride="8.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" VersionOverride="9.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'"> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" VersionOverride="9.0.0" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
</Project> |