Skip to content

Commit f24abb3

Browse files
committed
Normalize line endings in project files for Demo and Tests directories
1 parent b37ac01 commit f24abb3

File tree

2 files changed

+90
-90
lines changed

2 files changed

+90
-90
lines changed

Demo/StringPoolDemo.csproj

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net10.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<OutputType>Exe</OutputType>
8-
</PropertyGroup>
9-
10-
<PropertyGroup>
11-
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
12-
<AnalysisModeDesign>All</AnalysisModeDesign>
13-
<AnalysisModeSecurity>All</AnalysisModeSecurity>
14-
<AnalysisModePerformance>All</AnalysisModePerformance>
15-
<AnalysisModeReliability>All</AnalysisModeReliability>
16-
<AnalysisModeUsage>All</AnalysisModeUsage>
17-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
18-
</PropertyGroup>
19-
20-
<ItemGroup>
21-
<PackageReference Include="lookbusy1344.RecordValueAnalyser" Version="1.2.2">
22-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
23-
<PrivateAssets>all</PrivateAssets>
24-
</PackageReference>
25-
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.14.15">
26-
<PrivateAssets>all</PrivateAssets>
27-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
28-
</PackageReference>
29-
<PackageReference Include="Roslynator.Analyzers" Version="4.15.0">
30-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
31-
<PrivateAssets>all</PrivateAssets>
32-
</PackageReference>
33-
<PackageReference Include="System.IO.Hashing" Version="10.0.1" />
34-
</ItemGroup>
35-
36-
<ItemGroup>
37-
<Compile Include="../PooledString.cs" />
38-
<Compile Include="../UnmanagedStringPool.cs" />
39-
</ItemGroup>
40-
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net10.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<OutputType>Exe</OutputType>
8+
</PropertyGroup>
9+
10+
<PropertyGroup>
11+
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
12+
<AnalysisModeDesign>All</AnalysisModeDesign>
13+
<AnalysisModeSecurity>All</AnalysisModeSecurity>
14+
<AnalysisModePerformance>All</AnalysisModePerformance>
15+
<AnalysisModeReliability>All</AnalysisModeReliability>
16+
<AnalysisModeUsage>All</AnalysisModeUsage>
17+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
18+
</PropertyGroup>
19+
20+
<ItemGroup>
21+
<PackageReference Include="lookbusy1344.RecordValueAnalyser" Version="1.2.2">
22+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
23+
<PrivateAssets>all</PrivateAssets>
24+
</PackageReference>
25+
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.14.15">
26+
<PrivateAssets>all</PrivateAssets>
27+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
28+
</PackageReference>
29+
<PackageReference Include="Roslynator.Analyzers" Version="4.15.0">
30+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
31+
<PrivateAssets>all</PrivateAssets>
32+
</PackageReference>
33+
<PackageReference Include="System.IO.Hashing" Version="10.0.1" />
34+
</ItemGroup>
35+
36+
<ItemGroup>
37+
<Compile Include="../PooledString.cs" />
38+
<Compile Include="../UnmanagedStringPool.cs" />
39+
</ItemGroup>
40+
4141
</Project>

Tests/StringPoolTest.csproj

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
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

Comments
 (0)