mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
Updated NUnit3TestAdapter to 5.0.0 in multiple test projects. Updated AssetRipper.Text.SourceGeneration to 1.2.2 in several projects. Updated AssetRipper.Text.Html to 2.1.0 in AssetRipper.GUI.Web.csproj. Updated Moq to 4.20.72 in AssetRipper.Tests.csproj. Removed MaybeWithChecked, MaybeWithDisabled, MaybeSelected methods from HtmlExtensions.cs. Replaced MaybeSelected with MaybeWithSelected in SettingsPage.cs.
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<OutputPath>..\0Bins\Other\AssetRipper.SerializationLogic.Tests\$(Configuration)\</OutputPath>
|
|
<IntermediateOutputPath>..\0Bins\obj\AssetRipper.SerializationLogic.Tests\$(Configuration)\</IntermediateOutputPath>
|
|
<NoWarn>CS0169</NoWarn><!--Unused field-->
|
|
<NoWarn>CS0649</NoWarn><!--Field is never assigned to-->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.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>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AssetRipper.SerializationLogic\AssetRipper.SerializationLogic.csproj" />
|
|
<ProjectReference Include="..\UnityEngine\UnityEngine.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|