Used NuGet to link NUnit

This commit is contained in:
cygon 2024-06-17 23:45:40 +02:00
parent 734d06f7bb
commit 01965038df
2 changed files with 10 additions and 2 deletions

View File

@ -35,6 +35,9 @@
<DocumentationFile>bin\net-4.6\Release\Nuclex.Windows.Forms.xml</DocumentationFile> <DocumentationFile>bin\net-4.6\Release\Nuclex.Windows.Forms.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit> <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<NuGetPackageRoot>$(SolutionDir)third-party\</NuGetPackageRoot>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SignAssembly>true</SignAssembly> <SignAssembly>true</SignAssembly>
</PropertyGroup> </PropertyGroup>
@ -42,8 +45,8 @@
<AssemblyOriginatorKeyFile>..\Foundation.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>..\Foundation.snk</AssemblyOriginatorKeyFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="nunit.framework"> <Reference Include="nunit.framework, Version=2.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
<HintPath>..\third-party\nunit\net-4.0\framework\nunit.framework.dll</HintPath> <HintPath>..\third-party\NUnit.2.7.1\lib\nunit.framework.dll</HintPath>
</Reference> </Reference>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core" /> <Reference Include="System.Core" />
@ -156,6 +159,7 @@
<None Include="..\Foundation.snk"> <None Include="..\Foundation.snk">
<Link>Foundation.snk</Link> <Link>Foundation.snk</Link>
</None> </None>
<None Include="packages.config" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Folder Include="Resources\" /> <Folder Include="Resources\" />

4
packages.config Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="2.7.1" targetFramework="net462" />
</packages>