diff options
| author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-10-03 20:49:03 -0400 |
|---|---|---|
| committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-10-03 20:49:03 -0400 |
| commit | c87cd3b0028de6e9b4ed0eaacbc73cb83d64cd46 (patch) | |
| tree | 7c130a6a2b137ec08297ce7a13ebd8142323320c /build | |
| parent | de84adb47751c96fc60be66f6fdb186a09160820 (diff) | |
| parent | 68e9733a856b41c2b74d5c35a4b812e68157fbca (diff) | |
| download | SMAPI-c87cd3b0028de6e9b4ed0eaacbc73cb83d64cd46.tar.gz SMAPI-c87cd3b0028de6e9b4ed0eaacbc73cb83d64cd46.tar.bz2 SMAPI-c87cd3b0028de6e9b4ed0eaacbc73cb83d64cd46.zip | |
Merge branch 'develop' into stable
Diffstat (limited to 'build')
| -rw-r--r-- | build/common.targets | 2 | ||||
| -rw-r--r-- | build/prepare-nuget-package.targets | 23 |
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> |
