Skip to content

Commit e284136

Browse files
committed
chore: format csproj
1 parent 2fe6e8e commit e284136

File tree

9 files changed

+202
-202
lines changed

9 files changed

+202
-202
lines changed

sandbox/Benchmark/Benchmark.csproj

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9-
<IsPackable>false</IsPackable>
10-
</PropertyGroup>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net9.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9+
<IsPackable>false</IsPackable>
10+
</PropertyGroup>
1111

12-
<ItemGroup>
13-
<PackageReference Include="AndanteSoft.SpanLinq" Version="1.0.1" />
14-
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
15-
<PackageReference Include="LinqAF" Version="3.0.0" />
16-
<PackageReference Include="LinqGen" Version="0.3.1" />
17-
<PackageReference Include="LinqGen.Generator" Version="0.3.1" />
18-
<PackageReference Include="StructLinq" Version="0.28.2" />
19-
</ItemGroup>
12+
<ItemGroup>
13+
<PackageReference Include="AndanteSoft.SpanLinq" Version="1.0.1" />
14+
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
15+
<PackageReference Include="LinqAF" Version="3.0.0" />
16+
<PackageReference Include="LinqGen" Version="0.3.1" />
17+
<PackageReference Include="LinqGen.Generator" Version="0.3.1" />
18+
<PackageReference Include="StructLinq" Version="0.28.2" />
19+
</ItemGroup>
2020

21-
<ItemGroup>
22-
<ProjectReference Include="..\..\src\ZLinq\ZLinq.csproj" />
23-
</ItemGroup>
21+
<ItemGroup>
22+
<ProjectReference Include="..\..\src\ZLinq\ZLinq.csproj" />
23+
</ItemGroup>
2424

2525
</Project>

sandbox/ConsoleApp/ConsoleApp.csproj

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
<IsPackable>false</IsPackable>
9-
</PropertyGroup>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net9.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<ProjectReference Include="..\..\src\ZLinq.FileSystem\ZLinq.FileSystem.csproj" />
13-
<ProjectReference Include="..\..\src\ZLinq.Json\ZLinq.Json.csproj" />
14-
<ProjectReference Include="..\..\src\ZLinq\ZLinq.csproj" />
15-
</ItemGroup>
11+
<ItemGroup>
12+
<ProjectReference Include="..\..\src\ZLinq.FileSystem\ZLinq.FileSystem.csproj" />
13+
<ProjectReference Include="..\..\src\ZLinq.Json\ZLinq.Json.csproj" />
14+
<ProjectReference Include="..\..\src\ZLinq\ZLinq.csproj" />
15+
</ItemGroup>
1616

1717
</Project>

sandbox/FileGen/FileGen.csproj

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
<IsPackable>false</IsPackable>
9-
</PropertyGroup>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net9.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="ConsoleAppFramework" Version="5.4.1">
13-
<PrivateAssets>all</PrivateAssets>
14-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15-
</PackageReference>
16-
</ItemGroup>
11+
<ItemGroup>
12+
<PackageReference Include="ConsoleAppFramework" Version="5.4.1">
13+
<PrivateAssets>all</PrivateAssets>
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15+
</PackageReference>
16+
</ItemGroup>
1717

1818
</Project>
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
3+
<PropertyGroup>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
77

8-
<!-- NuGet Packaging -->
9-
<PackageTags>linq</PackageTags>
10-
<Description>LINQ to FileSystem; FileSystem extensions of ZLinq's LINQ to Tree.</Description>
11-
</PropertyGroup>
8+
<!-- NuGet Packaging -->
9+
<PackageTags>linq</PackageTags>
10+
<Description>LINQ to FileSystem; FileSystem extensions of ZLinq's LINQ to Tree.</Description>
11+
</PropertyGroup>
1212

13-
<ItemGroup>
14-
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
15-
</ItemGroup>
16-
<ItemGroup>
17-
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
18-
<EmbeddedResource Include="..\..\LICENSE" />
19-
</ItemGroup>
13+
<ItemGroup>
14+
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
15+
</ItemGroup>
16+
<ItemGroup>
17+
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
18+
<EmbeddedResource Include="..\..\LICENSE" />
19+
</ItemGroup>
2020

21-
<ItemGroup>
22-
<Using Include="ZLinq" />
23-
<Using Include="ZLinq.Internal" />
24-
<Using Include="ZLinq.Linq" />
25-
<Using Include="System.Runtime.CompilerServices" />
26-
<Using Include="System.Runtime.InteropServices" />
27-
<Using Include="System.ComponentModel" />
28-
</ItemGroup>
21+
<ItemGroup>
22+
<Using Include="ZLinq" />
23+
<Using Include="ZLinq.Internal" />
24+
<Using Include="ZLinq.Linq" />
25+
<Using Include="System.Runtime.CompilerServices" />
26+
<Using Include="System.Runtime.InteropServices" />
27+
<Using Include="System.ComponentModel" />
28+
</ItemGroup>
2929
</Project>

src/ZLinq.Godot/ZLinq.Godot.csproj

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
3+
<PropertyGroup>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
77

8-
<!-- NuGet Packaging -->
9-
<PackageTags>linq</PackageTags>
10-
<Description>LINQ to Godot's node tree; Node extensions of ZLinq's LINQ to Tree.</Description>
11-
</PropertyGroup>
8+
<!-- NuGet Packaging -->
9+
<PackageTags>linq</PackageTags>
10+
<Description>LINQ to Godot's node tree; Node extensions of ZLinq's LINQ to Tree.</Description>
11+
</PropertyGroup>
1212

13-
<ItemGroup>
14-
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
15-
</ItemGroup>
16-
<ItemGroup>
17-
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
18-
<EmbeddedResource Include="..\..\LICENSE" />
19-
</ItemGroup>
20-
<ItemGroup>
21-
<PackageReference Include="GodotSharp" Version="4.0.0" />
22-
</ItemGroup>
23-
<ItemGroup>
24-
<Using Include="ZLinq" />
25-
<Using Include="ZLinq.Internal" />
26-
<Using Include="ZLinq.Linq" />
27-
<Using Include="System.Runtime.CompilerServices" />
28-
<Using Include="System.Runtime.InteropServices" />
29-
<Using Include="System.ComponentModel" />
30-
</ItemGroup>
13+
<ItemGroup>
14+
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
15+
</ItemGroup>
16+
<ItemGroup>
17+
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
18+
<EmbeddedResource Include="..\..\LICENSE" />
19+
</ItemGroup>
20+
<ItemGroup>
21+
<PackageReference Include="GodotSharp" Version="4.0.0" />
22+
</ItemGroup>
23+
<ItemGroup>
24+
<Using Include="ZLinq" />
25+
<Using Include="ZLinq.Internal" />
26+
<Using Include="ZLinq.Linq" />
27+
<Using Include="System.Runtime.CompilerServices" />
28+
<Using Include="System.Runtime.InteropServices" />
29+
<Using Include="System.ComponentModel" />
30+
</ItemGroup>
3131
</Project>

src/ZLinq.Json/ZLinq.Json.csproj

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
3+
<PropertyGroup>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
77

8-
<!-- NuGet Packaging -->
9-
<PackageTags>linq</PackageTags>
10-
<Description>LINQ to Json; JsonNode(System.Text.Json) extensions of ZLinq's LINQ to Tree.</Description>
11-
</PropertyGroup>
8+
<!-- NuGet Packaging -->
9+
<PackageTags>linq</PackageTags>
10+
<Description>LINQ to Json; JsonNode(System.Text.Json) extensions of ZLinq's LINQ to Tree.</Description>
11+
</PropertyGroup>
1212

13-
<ItemGroup>
14-
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
15-
</ItemGroup>
16-
<ItemGroup>
17-
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
18-
<EmbeddedResource Include="..\..\LICENSE" />
19-
</ItemGroup>
20-
<ItemGroup>
21-
<Using Include="ZLinq" />
22-
<Using Include="ZLinq.Internal" />
23-
<Using Include="ZLinq.Linq" />
24-
<Using Include="System.Runtime.CompilerServices" />
25-
<Using Include="System.Runtime.InteropServices" />
26-
<Using Include="System.ComponentModel" />
27-
</ItemGroup>
13+
<ItemGroup>
14+
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
15+
</ItemGroup>
16+
<ItemGroup>
17+
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
18+
<EmbeddedResource Include="..\..\LICENSE" />
19+
</ItemGroup>
20+
<ItemGroup>
21+
<Using Include="ZLinq" />
22+
<Using Include="ZLinq.Internal" />
23+
<Using Include="ZLinq.Linq" />
24+
<Using Include="System.Runtime.CompilerServices" />
25+
<Using Include="System.Runtime.InteropServices" />
26+
<Using Include="System.ComponentModel" />
27+
</ItemGroup>
2828
</Project>
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<!-- Config for Unity, share by Source-code -->
5-
<RootNamespace>ZLinq</RootNamespace>
6-
<ImplicitUsings>disable</ImplicitUsings>
7-
<TargetFramework>netstandard2.1</TargetFramework>
8-
<Nullable>enable</Nullable>
9-
<LangVersion>9</LangVersion>
10-
<IsPackable>false</IsPackable>
11-
</PropertyGroup>
3+
<PropertyGroup>
4+
<!-- Config for Unity, share by Source-code -->
5+
<RootNamespace>ZLinq</RootNamespace>
6+
<ImplicitUsings>disable</ImplicitUsings>
7+
<TargetFramework>netstandard2.1</TargetFramework>
8+
<Nullable>enable</Nullable>
9+
<LangVersion>9</LangVersion>
10+
<IsPackable>false</IsPackable>
11+
</PropertyGroup>
1212

13-
<PropertyGroup Condition="$(TargetFramework.StartsWith(`netstandard`))">
14-
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
15-
</PropertyGroup>
13+
<PropertyGroup Condition="$(TargetFramework.StartsWith(`netstandard`))">
14+
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
15+
</PropertyGroup>
1616

17-
<ItemGroup>
18-
<Compile Include="..\ZLinq.Unity\Assets\ZLinq.Unity\Runtime\**\*.cs" />
19-
</ItemGroup>
17+
<ItemGroup>
18+
<Compile Include="..\ZLinq.Unity\Assets\ZLinq.Unity\Runtime\**\*.cs" />
19+
</ItemGroup>
2020

21-
<ItemGroup>
22-
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
23-
</ItemGroup>
21+
<ItemGroup>
22+
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
23+
</ItemGroup>
2424

25-
<ItemGroup>
26-
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
27-
</ItemGroup>
25+
<ItemGroup>
26+
<ProjectReference Include="..\ZLinq\ZLinq.csproj" />
27+
</ItemGroup>
2828

29-
</Project>
29+
</Project>

src/ZLinq/ZLinq.csproj

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1;net8.0;net9.0</TargetFrameworks>
5-
<RootNamespace>ZLinq</RootNamespace>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
<NoWarn>1701;1702;9124</NoWarn>
9-
<LangVersion>13</LangVersion>
10-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.1;net8.0;net9.0</TargetFrameworks>
5+
<RootNamespace>ZLinq</RootNamespace>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<NoWarn>1701;1702;9124</NoWarn>
9+
<LangVersion>13</LangVersion>
10+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1111

12-
<!-- NuGet Packaging -->
13-
<PackageTags>linq</PackageTags>
14-
<Description>Zero allocation LINQ with Span and LINQ to SIMD, LINQ to Tree (FileSystem, Json, GameObject, etc.) for all .NET platforms and Unity.</Description>
15-
</PropertyGroup>
12+
<!-- NuGet Packaging -->
13+
<PackageTags>linq</PackageTags>
14+
<Description>Zero allocation LINQ with Span and LINQ to SIMD, LINQ to Tree (FileSystem, Json, GameObject, etc.) for all .NET platforms and Unity.</Description>
15+
</PropertyGroup>
1616

17-
<PropertyGroup Condition="$(TargetFramework.StartsWith(`netstandard`))">
18-
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
19-
</PropertyGroup>
17+
<PropertyGroup Condition="$(TargetFramework.StartsWith(`netstandard`))">
18+
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
19+
</PropertyGroup>
2020

21-
<ItemGroup>
22-
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
23-
<EmbeddedResource Include="..\..\LICENSE" />
24-
</ItemGroup>
21+
<ItemGroup>
22+
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
23+
<EmbeddedResource Include="..\..\LICENSE" />
24+
</ItemGroup>
2525

26-
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.1'">
27-
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
28-
</ItemGroup>
26+
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.1'">
27+
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
28+
</ItemGroup>
2929

30-
<ItemGroup>
31-
<Using Include="ZLinq" />
32-
<Using Include="ZLinq.Internal" />
33-
<Using Include="ZLinq.Traversables" />
34-
<Using Include="ZLinq.Linq" />
35-
<Using Include="System.Runtime.CompilerServices" />
36-
<Using Include="System.Runtime.InteropServices" />
37-
<Using Include="System.ComponentModel" />
38-
</ItemGroup>
30+
<ItemGroup>
31+
<Using Include="ZLinq" />
32+
<Using Include="ZLinq.Internal" />
33+
<Using Include="ZLinq.Traversables" />
34+
<Using Include="ZLinq.Linq" />
35+
<Using Include="System.Runtime.CompilerServices" />
36+
<Using Include="System.Runtime.InteropServices" />
37+
<Using Include="System.ComponentModel" />
38+
</ItemGroup>
3939

40-
</Project>
40+
</Project>

0 commit comments

Comments
 (0)