mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 09:28:40 +00:00
* Bump ApiSurface from 4.1.21 to 4.1.22 --- updated-dependencies: - dependency-name: ApiSurface dependency-version: 4.1.22 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Deps * Deps --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[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.17.0]" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|