summaryrefslogtreecommitdiff
path: root/src/SMAPI.Mods.SaveBackup
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-06-14 10:55:52 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-06-14 10:55:52 -0400
commit79181012ee01e93c1af7c4bf8bd1a3a717274ded (patch)
tree6d6e76f5998123e24e464e198f45cab580639d76 /src/SMAPI.Mods.SaveBackup
parent8036bcdf007ef4c3e8b39778a2a202ba0b22edec (diff)
downloadSMAPI-79181012ee01e93c1af7c4bf8bd1a3a717274ded.tar.gz
SMAPI-79181012ee01e93c1af7c4bf8bd1a3a717274ded.tar.bz2
SMAPI-79181012ee01e93c1af7c4bf8bd1a3a717274ded.zip
tweak build files
Diffstat (limited to 'src/SMAPI.Mods.SaveBackup')
-rw-r--r--src/SMAPI.Mods.SaveBackup/SMAPI.Mods.SaveBackup.csproj16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/SMAPI.Mods.SaveBackup/SMAPI.Mods.SaveBackup.csproj b/src/SMAPI.Mods.SaveBackup/SMAPI.Mods.SaveBackup.csproj
index 970ccea8..98a3f0cc 100644
--- a/src/SMAPI.Mods.SaveBackup/SMAPI.Mods.SaveBackup.csproj
+++ b/src/SMAPI.Mods.SaveBackup/SMAPI.Mods.SaveBackup.csproj
@@ -1,34 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">
-
<PropertyGroup>
<AssemblyName>SaveBackup</AssemblyName>
<RootNamespace>StardewModdingAPI.Mods.SaveBackup</RootNamespace>
<TargetFramework>net45</TargetFramework>
- <LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
- <ProjectReference Include="..\SMAPI\SMAPI.csproj">
- <Private>False</Private>
- </ProjectReference>
+ <ProjectReference Include="..\SMAPI\SMAPI.csproj" Private="False" />
</ItemGroup>
<ItemGroup>
- <Reference Include="$(GameExecutableName)">
- <HintPath>$(GamePath)\$(GameExecutableName).exe</HintPath>
- <Private>False</Private>
- </Reference>
+ <Reference Include="$(GameExecutableName)" HintPath="$(GamePath)\$(GameExecutableName).exe" Private="False" />
</ItemGroup>
<ItemGroup>
- <None Update="manifest.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
+ <None Update="manifest.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<Import Project="..\SMAPI.Internal\SMAPI.Internal.projitems" Label="Shared" />
<Import Project="..\..\build\common.targets" />
-
</Project>