2017-02-04 09:18:00 +08:00
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!--
|
|
|
|
|
|
|
|
This build task is run from the installer project after all projects have been compiled, and
|
|
|
|
creates the build package in the bin\Packages folder.
|
|
|
|
|
|
|
|
-->
|
2019-09-14 05:22:45 +08:00
|
|
|
<Target Name="PrepareInstaller" AfterTargets="AfterBuild">
|
2017-02-04 09:18:00 +08:00
|
|
|
<PropertyGroup>
|
2018-11-20 04:05:44 +08:00
|
|
|
<RootPath>$(SolutionDir)\..</RootPath>
|
|
|
|
<CompiledRootPath>$(RootPath)\bin\$(Configuration)</CompiledRootPath>
|
2018-05-25 13:13:28 +08:00
|
|
|
<CompiledSmapiPath>$(CompiledRootPath)\SMAPI</CompiledSmapiPath>
|
|
|
|
<CompiledToolkitPath>$(CompiledRootPath)\SMAPI.Toolkit\net4.5</CompiledToolkitPath>
|
2019-09-14 05:22:45 +08:00
|
|
|
<CompiledModsPath>$(CompiledRootPath)\Mods</CompiledModsPath>
|
2018-11-18 13:51:30 +08:00
|
|
|
<PackagePath>$(SolutionDir)\..\bin\SMAPI installer</PackagePath>
|
|
|
|
<PackageDevPath>$(SolutionDir)\..\bin\SMAPI installer for developers</PackageDevPath>
|
2018-11-20 02:37:46 +08:00
|
|
|
<PlatformName>windows</PlatformName>
|
|
|
|
<PlatformName Condition="$(OS) != 'Windows_NT'">unix</PlatformName>
|
2017-02-04 09:18:00 +08:00
|
|
|
</PropertyGroup>
|
2018-08-31 06:14:40 +08:00
|
|
|
|
2017-02-04 09:18:00 +08:00
|
|
|
<!-- reset package directory -->
|
2017-02-04 11:02:54 +08:00
|
|
|
<RemoveDir Directories="$(PackagePath)" />
|
2018-11-18 13:51:30 +08:00
|
|
|
<RemoveDir Directories="$(PackageDevPath)" />
|
2017-02-04 09:18:00 +08:00
|
|
|
|
|
|
|
<!-- copy installer files -->
|
2018-08-31 06:14:40 +08:00
|
|
|
<Copy SourceFiles="$(TargetDir)\unix-install.sh" DestinationFiles="$(PackagePath)\install on Linux.sh" />
|
|
|
|
<Copy SourceFiles="$(TargetDir)\unix-install.sh" DestinationFiles="$(PackagePath)\install on Mac.command" />
|
|
|
|
<Copy SourceFiles="$(TargetDir)\windows-install.bat" DestinationFiles="$(PackagePath)\install on Windows.bat" />
|
2018-11-18 13:47:35 +08:00
|
|
|
<Copy SourceFiles="$(TargetDir)\README.txt" DestinationFiles="$(PackagePath)\README.txt" />
|
2018-11-20 02:37:46 +08:00
|
|
|
<Copy SourceFiles="$(TargetDir)\$(TargetName).exe" DestinationFiles="$(PackagePath)\internal\$(PlatformName)-install.exe" />
|
|
|
|
<Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(TargetDir)\windows-exe-config.xml" DestinationFiles="$(PackagePath)\internal\$(PlatformName)-install.exe.config" />
|
2017-05-04 00:28:05 +08:00
|
|
|
|
2018-11-18 13:47:35 +08:00
|
|
|
<!--copy bundle files-->
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.exe" DestinationFolder="$(PackagePath)\bundle" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.pdb" DestinationFolder="$(PackagePath)\bundle" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.xml" DestinationFolder="$(PackagePath)\bundle" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\steam_appid.txt" DestinationFolder="$(PackagePath)\bundle" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\0Harmony.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\Mono.Cecil.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\Newtonsoft.Json.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.config.json" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.metadata.json" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
2019-04-25 11:45:34 +08:00
|
|
|
<Copy SourceFiles="$(CompiledToolkitPath)\SMAPI.Toolkit.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledToolkitPath)\SMAPI.Toolkit.pdb" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledToolkitPath)\SMAPI.Toolkit.xml" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledToolkitPath)\SMAPI.Toolkit.CoreInterfaces.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledToolkitPath)\SMAPI.Toolkit.CoreInterfaces.pdb" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy SourceFiles="$(CompiledToolkitPath)\SMAPI.Toolkit.CoreInterfaces.xml" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
2018-12-15 07:59:49 +08:00
|
|
|
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(TargetDir)\unix-launcher.sh" DestinationFiles="$(PackagePath)\bundle\StardewModdingAPI" />
|
2018-11-18 13:47:35 +08:00
|
|
|
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\System.Numerics.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\System.Runtime.Caching.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
2018-12-15 07:59:49 +08:00
|
|
|
<Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(TargetDir)\windows-exe-config.xml" DestinationFiles="$(PackagePath)\bundle\StardewModdingAPI.exe.config" />
|
2018-08-20 06:28:16 +08:00
|
|
|
|
2019-09-14 05:22:45 +08:00
|
|
|
<!--copy bundled mods-->
|
|
|
|
<Copy SourceFiles="$(CompiledModsPath)\ConsoleCommands\ConsoleCommands.dll" DestinationFolder="$(PackagePath)\bundle\Mods\ConsoleCommands" />
|
|
|
|
<Copy SourceFiles="$(CompiledModsPath)\ConsoleCommands\ConsoleCommands.pdb" DestinationFolder="$(PackagePath)\bundle\Mods\ConsoleCommands" />
|
|
|
|
<Copy SourceFiles="$(CompiledModsPath)\ConsoleCommands\manifest.json" DestinationFolder="$(PackagePath)\bundle\Mods\ConsoleCommands" />
|
|
|
|
<Copy SourceFiles="$(CompiledModsPath)\SaveBackup\SaveBackup.dll" DestinationFolder="$(PackagePath)\bundle\Mods\SaveBackup" />
|
|
|
|
<Copy SourceFiles="$(CompiledModsPath)\SaveBackup\SaveBackup.pdb" DestinationFolder="$(PackagePath)\bundle\Mods\SaveBackup" />
|
|
|
|
<Copy SourceFiles="$(CompiledModsPath)\SaveBackup\manifest.json" DestinationFolder="$(PackagePath)\bundle\Mods\SaveBackup" />
|
|
|
|
|
2018-11-20 04:05:44 +08:00
|
|
|
<!-- fix errors on Linux/Mac (sample: https://log.smapi.io/mMdFUpgB) -->
|
|
|
|
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(RootPath)\build\lib\System.Numerics.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(RootPath)\build\lib\System.Runtime.Caching.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" />
|
|
|
|
|
2018-11-18 13:51:30 +08:00
|
|
|
<!-- fix Linux/Mac permissions -->
|
|
|
|
<Exec Condition="$(OS) != 'Windows_NT'" Command="chmod 755 "$(PackagePath)\install on Linux.sh"" />
|
|
|
|
<Exec Condition="$(OS) != 'Windows_NT'" Command="chmod 755 "$(PackagePath)\install on Mac.command"" />
|
|
|
|
|
|
|
|
<!-- finalise 'for developers' installer -->
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageFiles Include="$(PackagePath)\**\*.*" />
|
|
|
|
</ItemGroup>
|
|
|
|
<Copy SourceFiles="@(PackageFiles)" DestinationFolder="$(PackageDevPath)\%(RecursiveDir)" />
|
2018-11-20 02:37:46 +08:00
|
|
|
<ZipDirectory FromDirPath="$(PackageDevPath)\bundle" ToFilePath="$(PackageDevPath)\internal\$(PlatformName)-install.dat" />
|
2018-11-18 13:51:30 +08:00
|
|
|
<RemoveDir Directories="$(PackageDevPath)\bundle" />
|
|
|
|
|
|
|
|
<!-- finalise normal installer -->
|
|
|
|
<ReplaceFileText FilePath="$(PackagePath)\bundle\smapi-internal\StardewModdingAPI.config.json" Search=""DeveloperMode": true" Replace=""DeveloperMode": false" />
|
2018-11-20 02:37:46 +08:00
|
|
|
<ZipDirectory FromDirPath="$(PackagePath)\bundle" ToFilePath="$(PackagePath)\internal\$(PlatformName)-install.dat" />
|
2018-11-18 13:47:35 +08:00
|
|
|
<RemoveDir Directories="$(PackagePath)\bundle" />
|
2017-02-04 09:18:00 +08:00
|
|
|
</Target>
|
2018-11-18 13:47:35 +08:00
|
|
|
|
2018-11-18 13:51:30 +08:00
|
|
|
<!-- Create a zip file with the contents of a given folder path. Derived from https://stackoverflow.com/a/38127938/262123. -->
|
2018-11-18 13:47:35 +08:00
|
|
|
<UsingTask TaskName="ZipDirectory" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v12.0.dll">
|
|
|
|
<ParameterGroup>
|
|
|
|
<FromDirPath ParameterType="System.String" Required="true" />
|
|
|
|
<ToFilePath ParameterType="System.String" Required="true" />
|
|
|
|
</ParameterGroup>
|
|
|
|
<Task>
|
|
|
|
<Reference Include="System.IO.Compression.FileSystem" />
|
|
|
|
<Using Namespace="System.IO.Compression" />
|
|
|
|
<Code Type="Fragment" Language="cs">
|
|
|
|
<![CDATA[
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ZipFile.CreateFromDirectory(FromDirPath, ToFilePath);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(Exception ex)
|
|
|
|
{
|
|
|
|
Log.LogErrorFromException(ex);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</Code>
|
|
|
|
</Task>
|
|
|
|
</UsingTask>
|
2018-11-18 13:51:30 +08:00
|
|
|
|
|
|
|
<!-- Replace text in a file based on a regex pattern. Derived from https://stackoverflow.com/a/22571621/262123. -->
|
|
|
|
<UsingTask TaskName="ReplaceFileText" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
|
|
|
|
<ParameterGroup>
|
|
|
|
<FilePath ParameterType="System.String" Required="true" />
|
|
|
|
<Search ParameterType="System.String" Required="true" />
|
|
|
|
<Replace ParameterType="System.String" Required="true" />
|
|
|
|
</ParameterGroup>
|
|
|
|
<Task>
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
<Using Namespace="System" />
|
|
|
|
<Using Namespace="System.IO" />
|
|
|
|
<Using Namespace="System.Text.RegularExpressions" />
|
|
|
|
<Code Type="Fragment" Language="cs">
|
|
|
|
<![CDATA[
|
|
|
|
File.WriteAllText(
|
|
|
|
FilePath,
|
|
|
|
Regex.Replace(File.ReadAllText(FilePath), Search, Replace)
|
|
|
|
);
|
|
|
|
]]>
|
|
|
|
</Code>
|
|
|
|
</Task>
|
|
|
|
</UsingTask>
|
2017-02-04 11:02:54 +08:00
|
|
|
</Project>
|