summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/common.targets2
-rw-r--r--build/prepare-nuget-package.targets23
2 files changed, 1 insertions, 24 deletions
diff --git a/build/common.targets b/build/common.targets
index 7c2c5cad..171279a5 100644
--- a/build/common.targets
+++ b/build/common.targets
@@ -4,7 +4,7 @@
<!--set properties -->
<PropertyGroup>
- <Version>3.7.3</Version>
+ <Version>3.7.4</Version>
<Product>SMAPI</Product>
<LangVersion>latest</LangVersion>
diff --git a/build/prepare-nuget-package.targets b/build/prepare-nuget-package.targets
deleted file mode 100644
index 0682d9ff..00000000
--- a/build/prepare-nuget-package.targets
+++ /dev/null
@@ -1,23 +0,0 @@
-<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <!--
-
- This build task is run from the ModBuildConfig project after it's been compiled, and copies the
- package files to the bin\Pathoschild.Stardew.ModBuildConfig folder.
-
- -->
- <Target Name="PreparePackage" AfterTargets="AfterBuild">
- <PropertyGroup>
- <PackagePath>$(SolutionDir)\..\bin\Pathoschild.Stardew.ModBuildConfig</PackagePath>
- </PropertyGroup>
- <RemoveDir Directories="$(PackagePath)" />
- <Copy SourceFiles="$(ProjectDir)/package.nuspec" DestinationFolder="$(PackagePath)" />
- <Copy SourceFiles="$(SolutionDir)/../build/find-game-folder.targets" DestinationFolder="$(PackagePath)/build" />
- <Copy SourceFiles="$(ProjectDir)/build/smapi.targets" DestinationFiles="$(PackagePath)/build/Pathoschild.Stardew.ModBuildConfig.targets" />
- <Copy SourceFiles="$(TargetDir)/assets/nuget-icon.png" DestinationFiles="$(PackagePath)/images/icon.png" />
- <Copy SourceFiles="$(TargetDir)/Newtonsoft.Json.dll" DestinationFolder="$(PackagePath)/build" />
- <Copy SourceFiles="$(TargetDir)/SMAPI.ModBuildConfig.dll" DestinationFolder="$(PackagePath)/build" />
- <Copy SourceFiles="$(TargetDir)/SMAPI.Toolkit.dll" DestinationFolder="$(PackagePath)/build" />
- <Copy SourceFiles="$(TargetDir)/SMAPI.Toolkit.CoreInterfaces.dll" DestinationFolder="$(PackagePath)/build" />
- <Copy SourceFiles="$(SolutionDir)/SMAPI.ModBuildConfig.Analyzer/bin/netstandard2.0/SMAPI.ModBuildConfig.Analyzer.dll" DestinationFolder="$(PackagePath)/analyzers/dotnet/cs" />
- </Target>
-</Project>