From c8fd327f7d3bde56df8e9360dcaee9074a6c46c5 Mon Sep 17 00:00:00 2001 From: cygon Date: Mon, 17 Jun 2024 23:44:50 +0200 Subject: [PATCH] Added NUnit and NMock via NuGet instead of relying on the VCS --- .gitignore | 37 +++++++++++++++++++++++++++++++++ Nuclex.Support (net-4.6).csproj | 13 +++++++----- packages.config | 5 +++++ 3 files changed, 50 insertions(+), 5 deletions(-) create mode 100644 .gitignore create mode 100644 packages.config diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d55983e --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +NuclexSupportConfig.cmake + +# Visual Studio Codium +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Visual Studio +.vs/ +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates +*.userprefs + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Artifacts +[Bb]in/ +[Oo]bj/ diff --git a/Nuclex.Support (net-4.6).csproj b/Nuclex.Support (net-4.6).csproj index 06b3d2c..4e2912f 100644 --- a/Nuclex.Support (net-4.6).csproj +++ b/Nuclex.Support (net-4.6).csproj @@ -36,6 +36,9 @@ bin\net-4.6\Release\Nuclex.Support.xml false + + $(SolutionDir)third-party\ + true @@ -43,12 +46,11 @@ ..\Foundation.snk - - ..\References\nmock\net-4.0\NMock.StrongNamed.dll + + ..\third-party\NMock3.3.5.44\lib\net40\NMock3.dll - - False - ..\References\nunit\net-4.0\framework\nunit.framework.dll + + ..\third-party\NUnit.2.7.1\lib\nunit.framework.dll @@ -344,6 +346,7 @@ Foundation.snk + diff --git a/packages.config b/packages.config new file mode 100644 index 0000000..2dc42d9 --- /dev/null +++ b/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file