|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net10.0</TargetFramework> |
5 | | - <ImplicitUsings>enable</ImplicitUsings> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <IsTestProject>true</IsTestProject> |
8 | | - <GenerateAssemblyInfo>true</GenerateAssemblyInfo> |
9 | | - <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> |
10 | | - </PropertyGroup> |
11 | | - |
12 | | - <PropertyGroup> |
13 | | - <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> |
14 | | - <AnalysisModeDesign>All</AnalysisModeDesign> |
15 | | - <AnalysisModeSecurity>All</AnalysisModeSecurity> |
16 | | - <AnalysisModePerformance>All</AnalysisModePerformance> |
17 | | - <AnalysisModeReliability>All</AnalysisModeReliability> |
18 | | - <AnalysisModeUsage>All</AnalysisModeUsage> |
19 | | - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
20 | | - </PropertyGroup> |
21 | | - |
22 | | - <ItemGroup> |
23 | | - <PackageReference Include="lookbusy1344.RecordValueAnalyser" Version="1.2.2"> |
24 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
25 | | - <PrivateAssets>all</PrivateAssets> |
26 | | - </PackageReference> |
27 | | - <PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.14.15"> |
28 | | - <PrivateAssets>all</PrivateAssets> |
29 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
30 | | - </PackageReference> |
31 | | - <PackageReference Include="Roslynator.Analyzers" Version="4.15.0"> |
32 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
33 | | - <PrivateAssets>all</PrivateAssets> |
34 | | - </PackageReference> |
35 | | - <PackageReference Include="System.IO.Hashing" Version="10.0.1" /> |
36 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/> |
37 | | - <PackageReference Include="xunit" Version="2.9.3" /> |
38 | | - <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5"> |
39 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
40 | | - <PrivateAssets>all</PrivateAssets> |
41 | | - </PackageReference> |
42 | | - </ItemGroup> |
43 | | - |
44 | | - <ItemGroup> |
45 | | - <Compile Include="../UnmanagedStringPool.cs" /> |
46 | | - <Compile Include="../PooledString.cs" /> |
47 | | - <Compile Remove="../UnmanagedStringPoolDemo/**" /> |
48 | | - </ItemGroup> |
49 | | - |
50 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net10.0</TargetFramework> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <IsTestProject>true</IsTestProject> |
| 8 | + <GenerateAssemblyInfo>true</GenerateAssemblyInfo> |
| 9 | + <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> |
| 10 | + </PropertyGroup> |
| 11 | + |
| 12 | + <PropertyGroup> |
| 13 | + <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> |
| 14 | + <AnalysisModeDesign>All</AnalysisModeDesign> |
| 15 | + <AnalysisModeSecurity>All</AnalysisModeSecurity> |
| 16 | + <AnalysisModePerformance>All</AnalysisModePerformance> |
| 17 | + <AnalysisModeReliability>All</AnalysisModeReliability> |
| 18 | + <AnalysisModeUsage>All</AnalysisModeUsage> |
| 19 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <ItemGroup> |
| 23 | + <PackageReference Include="lookbusy1344.RecordValueAnalyser" Version="1.2.2"> |
| 24 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 25 | + <PrivateAssets>all</PrivateAssets> |
| 26 | + </PackageReference> |
| 27 | + <PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.14.15"> |
| 28 | + <PrivateAssets>all</PrivateAssets> |
| 29 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 30 | + </PackageReference> |
| 31 | + <PackageReference Include="Roslynator.Analyzers" Version="4.15.0"> |
| 32 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 33 | + <PrivateAssets>all</PrivateAssets> |
| 34 | + </PackageReference> |
| 35 | + <PackageReference Include="System.IO.Hashing" Version="10.0.1" /> |
| 36 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/> |
| 37 | + <PackageReference Include="xunit" Version="2.9.3" /> |
| 38 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5"> |
| 39 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 40 | + <PrivateAssets>all</PrivateAssets> |
| 41 | + </PackageReference> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | + <ItemGroup> |
| 45 | + <Compile Include="../UnmanagedStringPool.cs" /> |
| 46 | + <Compile Include="../PooledString.cs" /> |
| 47 | + <Compile Remove="../UnmanagedStringPoolDemo/**" /> |
| 48 | + </ItemGroup> |
| 49 | + |
| 50 | +</Project> |
0 commit comments