Skip to content

Commit f27972b

Browse files
committed
formatting
1 parent d77f8d3 commit f27972b

2 files changed

Lines changed: 73 additions & 74 deletions

File tree

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

3-
<PropertyGroup>
4-
<TargetFrameworks>net10.0</TargetFrameworks>
5-
<TargetFrameworks Condition="!$([MSBuild]::IsOsUnixLike())">$(TargetFrameworks);net481</TargetFrameworks>
6-
<LangVersion>preview</LangVersion>
7-
</PropertyGroup>
8-
9-
<PropertyGroup>
10-
<IsPackable>false</IsPackable>
11-
<IsTestable>true</IsTestable>
12-
<OutputType>Exe</OutputType>
13-
</PropertyGroup>
14-
15-
<ItemGroup>
16-
<PackageReference Include="AnakinRaW.CommonUtilities.Testing" Version="13.0.18" />
17-
<PackageReference Include="GitHubActionsTestLogger" Version="3.0.3" />
18-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.6" />
19-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
20-
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
21-
<PackageReference Include="Microsoft.Testing.Platform" Version="2.2.1" />
22-
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
23-
<PrivateAssets>all</PrivateAssets>
24-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
25-
</PackageReference>
26-
<PackageReference Include="coverlet.collector" Version="8.0.1">
27-
<PrivateAssets>all</PrivateAssets>
28-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
29-
</PackageReference>
30-
</ItemGroup>
31-
32-
<ItemGroup>
33-
<ProjectReference Include="..\PG.StarWarsGame.Engine.FileSystem\PG.StarWarsGame.Engine.FileSystem.csproj" />
34-
</ItemGroup>
35-
36-
<ItemGroup>
37-
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.202" />
38-
</ItemGroup>
39-
40-
<PropertyGroup>
41-
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
42-
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' != 'true'">true</IsLinux>
43-
</PropertyGroup>
44-
45-
<PropertyGroup Condition="'$(IsWindows)'=='true'">
46-
<DefineConstants>Windows</DefineConstants>
47-
</PropertyGroup>
48-
<PropertyGroup Condition="'$(IsLinux)'=='true'">
49-
<DefineConstants>Linux</DefineConstants>
50-
</PropertyGroup>
51-
3+
<PropertyGroup>
4+
<TargetFrameworks>net10.0</TargetFrameworks>
5+
<TargetFrameworks Condition="!$([MSBuild]::IsOsUnixLike())">$(TargetFrameworks);net481</TargetFrameworks>
6+
<LangVersion>preview</LangVersion>
7+
</PropertyGroup>
8+
9+
<PropertyGroup>
10+
<IsPackable>false</IsPackable>
11+
<IsTestable>true</IsTestable>
12+
<OutputType>Exe</OutputType>
13+
</PropertyGroup>
14+
15+
<ItemGroup>
16+
<PackageReference Include="AnakinRaW.CommonUtilities.Testing" Version="13.0.18" />
17+
<PackageReference Include="GitHubActionsTestLogger" Version="3.0.3" />
18+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.6" />
19+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
20+
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
21+
<PackageReference Include="Microsoft.Testing.Platform" Version="2.2.1" />
22+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
23+
<PrivateAssets>all</PrivateAssets>
24+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
25+
</PackageReference>
26+
<PackageReference Include="coverlet.collector" Version="8.0.1">
27+
<PrivateAssets>all</PrivateAssets>
28+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
29+
</PackageReference>
30+
</ItemGroup>
31+
32+
<ItemGroup>
33+
<ProjectReference Include="..\PG.StarWarsGame.Engine.FileSystem\PG.StarWarsGame.Engine.FileSystem.csproj" />
34+
</ItemGroup>
35+
36+
<ItemGroup>
37+
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.202" />
38+
</ItemGroup>
39+
40+
<PropertyGroup>
41+
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
42+
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' != 'true'">true</IsLinux>
43+
</PropertyGroup>
44+
45+
<PropertyGroup Condition="'$(IsWindows)'=='true'">
46+
<DefineConstants>Windows</DefineConstants>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(IsLinux)'=='true'">
49+
<DefineConstants>Linux</DefineConstants>
50+
</PropertyGroup>
5251

5352
</Project>
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;netstandard2.1;net10.0</TargetFrameworks>
4-
<RootNamespace>PG.StarWarsGame.Engine</RootNamespace>
5-
<Title>PG.StarWarsGame.Engine.FileSystem</Title>
6-
<Product>PG.StarWarsGame.Engine.FileSystem</Product>
7-
<PackageId>AlamoEngineTools.PG.StarWarsGame.Engine.FileSystem</PackageId>
8-
<PackageTags>alamo,petroglyph,glyphx</PackageTags>
9-
</PropertyGroup>
10-
<PropertyGroup>
11-
<!--<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2+
<PropertyGroup>
3+
<TargetFrameworks>netstandard2.0;netstandard2.1;net10.0</TargetFrameworks>
4+
<RootNamespace>PG.StarWarsGame.Engine</RootNamespace>
5+
<Title>PG.StarWarsGame.Engine.FileSystem</Title>
6+
<Product>PG.StarWarsGame.Engine.FileSystem</Product>
7+
<PackageId>AlamoEngineTools.PG.StarWarsGame.Engine.FileSystem</PackageId>
8+
<PackageTags>alamo,petroglyph,glyphx</PackageTags>
9+
</PropertyGroup>
10+
<PropertyGroup>
11+
<!--<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1313
<InheritDocEnabled>true</InheritDocEnabled>-->
14-
</PropertyGroup>
15-
<PropertyGroup>
16-
<IncludeSymbols>true</IncludeSymbols>
17-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
18-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
19-
<LangVersion>preview</LangVersion>
20-
</PropertyGroup>
21-
<ItemGroup>
22-
<PackageReference Include="AnakinRaW.CommonUtilities.FileSystem" Version="13.0.18" />
23-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.6" />
24-
</ItemGroup>
25-
<ItemGroup>
26-
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.202" />
27-
</ItemGroup>
28-
14+
</PropertyGroup>
15+
<PropertyGroup>
16+
<IncludeSymbols>true</IncludeSymbols>
17+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
18+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
19+
<LangVersion>preview</LangVersion>
20+
</PropertyGroup>
21+
<ItemGroup>
22+
<PackageReference Include="AnakinRaW.CommonUtilities.FileSystem" Version="13.0.18" />
23+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.6" />
24+
</ItemGroup>
25+
<ItemGroup>
26+
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.202" />
27+
</ItemGroup>
28+
2929
</Project>

0 commit comments

Comments
 (0)