From 125bcbee56bf40cf82abc7fdb502f8cbc18546cf Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Fri, 13 Sep 2019 17:22:45 -0400 Subject: migrate to new project file format --- build/common.targets | 9 +++++++-- build/prepare-install-package.targets | 15 ++++++++++----- build/prepare-nuget-package.targets | 2 +- 3 files changed, 18 insertions(+), 8 deletions(-) (limited to 'build') diff --git a/build/common.targets b/build/common.targets index e08e7066..0781d568 100644 --- a/build/common.targets +++ b/build/common.targets @@ -39,6 +39,11 @@ + + + $(AssemblySearchPaths);{GAC} + + $(GamePath)\Stardew Valley.exe @@ -93,12 +98,12 @@ - + - + diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index cd758e96..b7b70ed0 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -5,20 +5,18 @@ creates the build package in the bin\Packages folder. --> - + $(SolutionDir)\.. $(RootPath)\bin\$(Configuration) $(CompiledRootPath)\SMAPI $(CompiledRootPath)\SMAPI.Toolkit\net4.5 + $(CompiledRootPath)\Mods $(SolutionDir)\..\bin\SMAPI installer $(SolutionDir)\..\bin\SMAPI installer for developers windows unix - - - @@ -48,12 +46,19 @@ - + + + + + + + + diff --git a/build/prepare-nuget-package.targets b/build/prepare-nuget-package.targets index 0b4320a7..172bfdcc 100644 --- a/build/prepare-nuget-package.targets +++ b/build/prepare-nuget-package.targets @@ -5,7 +5,7 @@ package files to the bin\Pathoschild.Stardew.ModBuildConfig folder. --> - + $(SolutionDir)\..\bin\Pathoschild.Stardew.ModBuildConfig -- cgit From b7b8b001c5c2dc5d2c9fc1347532ca29368c2325 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Fri, 13 Sep 2019 18:20:27 -0400 Subject: update for release --- build/GlobalAssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build/GlobalAssemblyInfo.cs b/build/GlobalAssemblyInfo.cs index ced7af52..a3ca3051 100644 --- a/build/GlobalAssemblyInfo.cs +++ b/build/GlobalAssemblyInfo.cs @@ -1,5 +1,5 @@ using System.Reflection; [assembly: AssemblyProduct("SMAPI")] -[assembly: AssemblyVersion("2.11.2")] -[assembly: AssemblyFileVersion("2.11.2")] +[assembly: AssemblyVersion("2.11.3")] +[assembly: AssemblyFileVersion("2.11.3")] -- cgit