summaryrefslogtreecommitdiff
path: root/src/SMAPI.ModBuildConfig/build/smapi.targets
blob: 51432d96779d60311a528c6b4dcc5f97e539426c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

  <Import Project="find-game-folder.targets" />
  <UsingTask TaskName="DeployModTask" AssemblyFile="SMAPI.ModBuildConfig.dll" />


  <!--*********************************************
  ** Set build options
  **********************************************-->
  <PropertyGroup>
    <!-- set build to x86 to avoid mismatched platform warnings (only affects mods using new csproj format) -->
    <Platforms>x86</Platforms>
    <PlatformTarget>x86</PlatformTarget>

    <!-- include PDB file by default to enable line numbers in stack traces -->
    <DebugType>pdbonly</DebugType>
    <DebugSymbols>true</DebugSymbols>

    <!-- recognise XNA Framework DLLs in the GAC (only affects mods using new csproj format) -->
    <AssemblySearchPaths>$(AssemblySearchPaths);{GAC}</AssemblySearchPaths>

    <!-- set default package options -->
    <ModFolderName Condition="'$(ModFolderName)' == ''">$(MSBuildProjectName)</ModFolderName>
    <ModZipPath Condition="'$(ModZipPath)' == ''">$(TargetDir)</ModZipPath>
    <EnableModDeploy Condition="'$(EnableModDeploy)' == ''">true</EnableModDeploy>
    <EnableModZip Condition="'$(EnableModZip)' == ''">true</EnableModZip>
    <EnableHarmony Condition="'$(EnableModZip)' == ''">false</EnableHarmony>
    <EnableGameDebugging Condition="$(EnableGameDebugging) == ''">true</EnableGameDebugging>
    <CopyModReferencesToBuildOutput Condition="'$(CopyModReferencesToBuildOutput)' == '' OR ('$(CopyModReferencesToBuildOutput)' != 'true' AND '$(CopyModReferencesToBuildOutput)' != 'false')">false</CopyModReferencesToBuildOutput>
  </PropertyGroup>

  <PropertyGroup Condition="$(OS) == 'Windows_NT' AND $(EnableGameDebugging) == 'true'">
    <!-- enable game debugging -->
    <StartAction>Program</StartAction>
    <StartProgram>$(GamePath)\StardewModdingAPI.exe</StartProgram>
    <StartWorkingDirectory>$(GamePath)</StartWorkingDirectory>
  </PropertyGroup>


  <!--*********************************************
  ** Add assembly references
  **********************************************-->
  <!-- common -->
  <ItemGroup>
    <Reference Include="$(GameExecutableName)">
      <HintPath>$(GamePath)\$(GameExecutableName).exe</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="StardewModdingAPI">
      <HintPath>$(GamePath)\StardewModdingAPI.exe</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="SMAPI.Toolkit.CoreInterfaces">
      <HintPath>$(GamePath)\smapi-internal\SMAPI.Toolkit.CoreInterfaces.dll</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="xTile">
      <HintPath>$(GamePath)\xTile.dll</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="0Harmony" Condition="'$(EnableHarmony)' == 'true'">
      <HintPath>$(GamePath)\smapi-internal\0Harmony.dll</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
  </ItemGroup>

  <!-- Windows -->
  <ItemGroup Condition="$(OS) == 'Windows_NT'">
    <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="Microsoft.Xna.Framework.Xact, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="Netcode">
      <HintPath>$(GamePath)\Netcode.dll</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="StardewValley.GameData">
      <HintPath>$(GamePath)\StardewValley.GameData.dll</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
  </ItemGroup>

  <!-- Linux/Mac -->
  <ItemGroup Condition="$(OS) != 'Windows_NT'">
    <Reference Include="MonoGame.Framework">
      <HintPath>$(GamePath)\MonoGame.Framework.dll</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
    <Reference Include="StardewValley.GameData.MonoGame">
      <HintPath>$(GamePath)\StardewValley.GameData.MonoGame.dll</HintPath>
      <Private>$(CopyModReferencesToBuildOutput)</Private>
    </Reference>
  </ItemGroup>


  <!--*********************************************
  ** Show friendly error for invalid OS or game path
  **********************************************-->
  <Target Name="BeforeBuild">
    <Error Condition="'$(OS)' != 'OSX' AND '$(OS)' != 'Unix' AND '$(OS)' != 'Windows_NT'" Text="The mod build package doesn't recognise OS type '$(OS)'." />

    <Error Condition="!Exists('$(GamePath)')" Text="The mod build package can't find your game folder. You can specify where to find it; see https://smapi.io/buildmsg/custom-game-path." />
    <Error Condition="!Exists('$(GamePath)\$(GameExecutableName).exe')" Text="The mod build package found a game folder at $(GamePath), but it doesn't contain the $(GameExecutableName) file. If this folder is invalid, delete it and the package will autodetect another game install path." />
    <Error Condition="!Exists('$(GamePath)\StardewModdingAPI.exe')" Text="The mod build package found a game folder at $(GamePath), but it doesn't contain SMAPI. You need to install SMAPI before building the mod." />
  </Target>


  <!--*********************************************
  ** Deploy mod files & create release zip
  **********************************************-->
  <Target Name="AfterBuild">
    <DeployModTask
      ModFolderName="$(ModFolderName)"
      ModZipPath="$(ModZipPath)"

      EnableModDeploy="$(EnableModDeploy)"
      EnableModZip="$(EnableModZip)"

      ProjectDir="$(ProjectDir)"
      TargetDir="$(TargetDir)"
      GameDir="$(GamePath)"
      IgnoreModFilePatterns="$(IgnoreModFilePatterns)"
    />
  </Target>
</Project>