mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 17:38:40 +00:00
* Automated commit * Rem net6 * NoEquality --------- Co-authored-by: patrick-conscriptus[bot] <175414948+patrick-conscriptus[bot]@users.noreply.github.com> Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com>
17 lines
745 B
XML
17 lines
745 B
XML
<Project Sdk="Microsoft.Build.NoTargets/1.0.80"> <!-- This is not a project we want to build. -->
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<IsPublishable>false</IsPublishable>
|
|
<RestorePackagesPath>../.analyzerpackages/</RestorePackagesPath>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
|
|
<AutomaticallyUseReferenceAssemblyPackages>false</AutomaticallyUseReferenceAssemblyPackages> <!-- We don't want to build this project, so we do not need the reference assemblies for the framework we chose.-->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageDownload Include="G-Research.FSharp.Analyzers" Version="[0.12.0]" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|