mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
The `coverlet.collector` package reference has been removed from multiple test project files, including `AssetRipper.Assets.Tests.csproj`, `AssetRipper.GUI.Web.Tests.csproj`, `AssetRipper.IO.Files.Tests.csproj`, `AssetRipper.Numerics.Tests.csproj`, `AssetRipper.SerializationLogic.Tests.csproj`, `AssetRipper.Tests.csproj`, and `AssetRipper.Yaml.Tests.csproj`. This change includes the removal of its version specification, as well as the associated `<PrivateAssets>` and `<IncludeAssets>` elements.
25 lines
986 B
XML
25 lines
986 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<OutputPath>..\0Bins\Other\AssetRipper.Assets.Tests\$(Configuration)\</OutputPath>
|
|
<IntermediateOutputPath>..\0Bins\obj\AssetRipper.Assets.Tests\$(Configuration)\</IntermediateOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
|
|
<PackageReference Include="NUnit" Version="4.3.2" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
|
|
<PackageReference Include="NUnit.Analyzers" Version="4.6.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AssetRipper.Assets\AssetRipper.Assets.csproj" />
|
|
<ProjectReference Include="..\AssetRipper.SourceGenerated.Extensions\AssetRipper.SourceGenerated.Extensions.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|