Skip to content

Commit 879ab13

Browse files
committed
Updates
1 parent 60ae937 commit 879ab13

File tree

4 files changed

+64
-87
lines changed

4 files changed

+64
-87
lines changed
Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net10.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
<PublishAot>true</PublishAot>
9-
<InvariantGlobalization>true</InvariantGlobalization>
10-
</PropertyGroup>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net10.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<PublishAot>true</PublishAot>
9+
<InvariantGlobalization>true</InvariantGlobalization>
10+
</PropertyGroup>
1111

12-
<ItemGroup>
13-
<PackageReference Include="BenchmarkDotNet" Version="0.14.0"/>
14-
</ItemGroup>
12+
<ItemGroup>
13+
<PackageReference Include="BenchmarkDotNet" Version="0.15.8"/>
14+
</ItemGroup>
1515

16-
<ItemGroup>
17-
<ProjectReference Include="..\Raspite\Raspite.csproj"/>
18-
</ItemGroup>
16+
<ItemGroup>
17+
<ProjectReference Include="..\Raspite\Raspite.csproj"/>
18+
</ItemGroup>
1919

2020
</Project>

Raspite.Tests/Raspite.Tests.csproj

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

3-
<PropertyGroup>
4-
<TargetFramework>net10.0</TargetFramework>
5-
<LangVersion>latest</LangVersion>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
<IsPackable>false</IsPackable>
9-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net10.0</TargetFramework>
5+
<LangVersion>latest</LangVersion>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="coverlet.collector" Version="6.0.2"/>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
14-
<PackageReference Include="NUnit" Version="4.2.2"/>
15-
<PackageReference Include="NUnit.Analyzers" Version="4.4.0"/>
16-
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0"/>
17-
</ItemGroup>
11+
<ItemGroup>
12+
<PackageReference Include="coverlet.collector" Version="6.0.4">
13+
<PrivateAssets>all</PrivateAssets>
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15+
</PackageReference>
16+
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/>
18+
<PackageReference Include="NUnit" Version="4.4.0"/>
1819

19-
<ItemGroup>
20-
<Using Include="NUnit.Framework"/>
21-
</ItemGroup>
20+
<PackageReference Include="NUnit.Analyzers" Version="4.11.2">
21+
<PrivateAssets>all</PrivateAssets>
22+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
23+
</PackageReference>
2224

23-
<ItemGroup>
24-
<ProjectReference Include="..\Raspite\Raspite.csproj"/>
25-
</ItemGroup>
25+
<PackageReference Include="NUnit3TestAdapter" Version="6.0.1"/>
26+
</ItemGroup>
27+
28+
<ItemGroup>
29+
<Using Include="NUnit.Framework"/>
30+
</ItemGroup>
31+
32+
<ItemGroup>
33+
<ProjectReference Include="..\Raspite\Raspite.csproj"/>
34+
</ItemGroup>
2635

2736
</Project>

Raspite.slnx

Lines changed: 3 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,5 @@
11
<Solution>
2-
3-
<Configurations>
4-
<Platform Name="Any CPU"/>
5-
<Platform Name="ARM64"/>
6-
<Platform Name="x64"/>
7-
<Platform Name="x86"/>
8-
</Configurations>
9-
10-
<Project Path="Raspite.Benchmarks\Raspite.Benchmarks.csproj" Type="Classic C#">
11-
<Configuration Solution="Debug|ARM64" Project="Debug|Any CPU"/>
12-
<Configuration Solution="Debug|x64" Project="Debug|Any CPU"/>
13-
<Configuration Solution="Debug|x86" Project="Debug|Any CPU"/>
14-
<Configuration Solution="Release|ARM64" Project="Release|Any CPU"/>
15-
<Configuration Solution="Release|x64" Project="Release|Any CPU"/>
16-
<Configuration Solution="Release|x86" Project="Release|Any CPU"/>
17-
</Project>
18-
19-
<Project Path="Raspite.Tests\Raspite.Tests.csproj" Type="Classic C#">
20-
<Configuration Solution="Debug|ARM64" Project="Debug|Any CPU"/>
21-
<Configuration Solution="Debug|x64" Project="Debug|Any CPU"/>
22-
<Configuration Solution="Debug|x86" Project="Debug|Any CPU"/>
23-
<Configuration Solution="Release|ARM64" Project="Release|Any CPU"/>
24-
<Configuration Solution="Release|x64" Project="Release|Any CPU"/>
25-
<Configuration Solution="Release|x86" Project="Release|Any CPU"/>
26-
</Project>
27-
28-
<Project Path="Raspite\Raspite.csproj" Type="Classic C#">
29-
<Configuration Solution="Debug|ARM64" Project="Debug|Any CPU"/>
30-
<Configuration Solution="Debug|x64" Project="Debug|Any CPU"/>
31-
<Configuration Solution="Debug|x86" Project="Debug|Any CPU"/>
32-
<Configuration Solution="Release|ARM64" Project="Release|Any CPU"/>
33-
<Configuration Solution="Release|x64" Project="Release|Any CPU"/>
34-
<Configuration Solution="Release|x86" Project="Release|Any CPU"/>
35-
</Project>
36-
2+
<Project Path="Raspite.Benchmarks\Raspite.Benchmarks.csproj" Type="Classic C#"/>
3+
<Project Path="Raspite.Tests\Raspite.Tests.csproj" Type="Classic C#"/>
4+
<Project Path="Raspite\Raspite.csproj" Type="Classic C#"/>
375
</Solution>

Raspite/Raspite.csproj

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

3-
<PropertyGroup>
4-
<TargetFramework>net10.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<IsAotCompatible>true</IsAotCompatible>
8-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
9-
<Authors>Starlk</Authors>
10-
<RepositoryUrl>https://github.com/TheVeryStarlk/Raspite</RepositoryUrl>
11-
<PackageTags>Minecraft, Serializer, NBT</PackageTags>
12-
<NeutralLanguage>en</NeutralLanguage>
13-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
14-
<Title>Minecraft NBT Serialization Library</Title>
15-
<Description>A fast, lightweight, and easy-to-use NBT serialization library.</Description>
16-
<PackageReadmeFile>README.md</PackageReadmeFile>
17-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net10.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<IsAotCompatible>true</IsAotCompatible>
8+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
9+
<Authors>Starlk</Authors>
10+
<RepositoryUrl>https://github.com/TheVeryStarlk/Raspite</RepositoryUrl>
11+
<PackageTags>Minecraft, Serializer, NBT</PackageTags>
12+
<NeutralLanguage>en</NeutralLanguage>
13+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
14+
<Title>Minecraft NBT Serialization Library</Title>
15+
<Description>A fast, lightweight, and easy-to-use NBT serialization library.</Description>
16+
<PackageReadmeFile>README.md</PackageReadmeFile>
17+
</PropertyGroup>
1818

19-
<ItemGroup>
20-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
21-
</ItemGroup>
19+
<ItemGroup>
20+
<None Include="..\README.md" Pack="true" PackagePath="\"/>
21+
</ItemGroup>
2222
</Project>

0 commit comments

Comments
 (0)