-
Notifications
You must be signed in to change notification settings - Fork 3
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
69f9814
commit 04aac8c
Showing
5 changed files
with
16 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,22 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<LangVersion>11.0</LangVersion> | ||
<LangVersion>13.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
|
||
<!-- required for auto incrementing assembly version, which is needed for KTA --> | ||
<!-- required for auto incrementing assembly version --> | ||
<Deterministic>false</Deterministic> | ||
<AssemblyVersion>1.0.0.*</AssemblyVersion> | ||
<AssemblyVersion>1.0.*</AssemblyVersion> | ||
</PropertyGroup> | ||
|
||
|
||
<PropertyGroup> | ||
<NoWarn>$(NoWarn);CS7035</NoWarn> | ||
<!-- CS7035 The specified version string does not conform to the recommended format - major.minor.build.revision --> | ||
</PropertyGroup> | ||
|
||
|
||
<!-- | ||
C# 8.0 on .NET Framework: | ||
https://stu.dev/csharp8-doing-unsupported-things/ | ||
https://stackoverflow.com/questions/56651472/does-c-sharp-8-support-the-net-framework/57020770#57020770 | ||
--> | ||
<ItemGroup Condition=" '$(LangVersion)' >= '8.0' " > | ||
<!-- C# 8.0 on .NET Framework: Indexes and Ranges --> | ||
|
||
<PackageReference Include="PolySharp" Version="1.13.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<!-- | ||
C# 8.0 on .NET Framework: Provide nullable attribures and nullability annotations | ||
https://github.com/tunnelvisionlabs/ReferenceAssemblyAnnotator | ||
<PackageReference Include="TunnelVisionLabs.ReferenceAssemblyAnnotator" Version="1.0.0-alpha.160"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageDownload Include="Microsoft.NETCore.App.Ref" Version="[5.0.0]" /> | ||
--> | ||
<ItemGroup> | ||
<PackageReference Include="PolySharp" Version="1.14.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
</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
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