2022-06-27 02:41:35 +08:00
<!--
This MSBuild file sets the common configuration and build scripts used by all the projects in this
repo. It imports the other MSBuild files as needed.
-->
2018-05-03 13:38:08 +08:00
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
2021-04-23 14:05:14 +08:00
<!--set general build properties -->
2022-09-01 05:15:58 +08:00
<Version>3.16.2</Version>
2019-08-10 05:47:53 +08:00
<Product>SMAPI</Product>
2020-06-14 22:55:52 +08:00
<LangVersion>latest</LangVersion>
2019-06-19 11:59:30 +08:00
<AssemblySearchPaths>$(AssemblySearchPaths);{GAC}</AssemblySearchPaths>
2022-06-21 06:01:48 +08:00
<DefineConstants>$(DefineConstants);SMAPI_DEPRECATED</DefineConstants>
2022-06-27 02:41:35 +08:00
<DebugSymbols>true</DebugSymbols>
2022-04-08 10:19:48 +08:00
<!--enable nullable annotations, except in .NET Standard 2.0 where they aren't supported-->
2022-04-13 07:15:39 +08:00
<Nullable Condition="'$(TargetFramework)' != 'netstandard2.0'">enable</Nullable>
<NoWarn Condition="'$(TargetFramework)' == 'netstandard2.0'">$(NoWarn);CS8632</NoWarn>
2021-04-03 09:30:55 +08:00
2021-04-23 14:05:14 +08:00
<!--set platform-->
2021-08-13 09:26:10 +08:00
<DefineConstants Condition="$(OS) == 'Windows_NT'">$(DefineConstants);SMAPI_FOR_WINDOWS</DefineConstants>
2021-12-03 09:48:00 +08:00
<CopyToGameFolder>true</CopyToGameFolder>
2021-12-05 04:55:16 +08:00
<!-- allow mods to be compiled as AnyCPU for compatibility with older platforms -->
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<!--
suppress warnings that don't apply, so it's easier to spot actual issues.
2022-06-21 06:01:48 +08:00
warning | builds | summary | rationale
┄┄┄┄┄┄┄ | ┄┄┄┄┄┄┄┄┄┄ | ┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ | ┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
CS0436 | all | local type conflicts with imported type | SMAPI needs to use certain low-level code during very early compatibility checks, before it's safe to load any other DLLs.
CS0612 | deprecated | member is obsolete | internal references to deprecated code when deprecated code is enabled.
CS0618 | deprecated | member is obsolete (with message) | internal references to deprecated code when deprecated code is enabled.
CA1416 | all | platform code available on all platforms | Compiler doesn't recognize the #if constants used by SMAPI.
CS0809 | all | obsolete overload for non-obsolete member | This is deliberate to signal to mods that certain APIs are only implemented for the game and shouldn't be called by mods.
NU1701 | all | NuGet package targets older .NET version | All such packages are carefully tested to make sure they do work.
2021-12-05 04:55:16 +08:00
-->
2022-06-21 06:01:48 +08:00
<NoWarn Condition="$(DefineConstants.Contains(SMAPI_DEPRECATED))">$(NoWarn);CS0612;CS0618</NoWarn>
<NoWarn>$(NoWarn);CS0436;CA1416;CS0809;NU1701</NoWarn>
2018-05-03 13:38:08 +08:00
</PropertyGroup>
2021-04-03 09:30:55 +08:00
<!--find game folder-->
<Import Project="find-game-folder.targets" />
2019-09-14 05:22:45 +08:00
<Target Name="ValidateInstallPath" AfterTargets="BeforeBuild">
2022-06-27 02:41:35 +08:00
<!-- if game path is invalid, show one user-friendly error instead of a slew of reference errors -->
2019-07-06 13:04:05 +08:00
<Error Condition="!Exists('$(GamePath)')" Text="Failed to find the game install path automatically. You can specify where to find it; see https://smapi.io/package/custom-game-path." />
2018-05-03 13:38:08 +08:00
</Target>
2022-06-27 02:41:35 +08:00
<!--deploy local files-->
<Import Project="deploy-local-smapi.targets" Condition="'$(CopyToGameFolder)' == 'true'" />
2019-06-17 02:10:09 +08:00
2018-12-05 09:12:24 +08:00
<!-- launch SMAPI through Visual Studio -->
2019-08-11 06:29:56 +08:00
<PropertyGroup Condition="'$(MSBuildProjectName)' == 'SMAPI'">
2018-05-03 13:38:08 +08:00
<StartAction>Program</StartAction>
<StartProgram>$(GamePath)\StardewModdingAPI.exe</StartProgram>
<StartWorkingDirectory>$(GamePath)</StartWorkingDirectory>
</PropertyGroup>
2021-04-04 23:37:11 +08:00
<!-- Somehow this makes Visual Studio for macOS recognise the previous section. Nobody knows why. -->
2018-05-03 13:38:08 +08:00
<PropertyGroup Condition="'$(RunConfiguration)' == 'Default'" />
</Project>