summaryrefslogtreecommitdiff
path: root/src/SMAPI.ModBuildConfig/SMAPI.ModBuildConfig.csproj
blob: ccbd9a852969ad0046b7b89e41c06888bd66cc07 (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
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <AssemblyName>SMAPI.ModBuildConfig</AssemblyName>
    <RootNamespace>StardewModdingAPI.ModBuildConfig</RootNamespace>
    <Version>3.0.0</Version>
    <TargetFramework>net45</TargetFramework>
    <LangVersion>latest</LangVersion>
    <PlatformTarget>x86</PlatformTarget>
    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  </PropertyGroup>

  <ItemGroup>
    <ProjectReference Include="..\SMAPI.Toolkit\SMAPI.Toolkit.csproj" />
  </ItemGroup>

  <ItemGroup>
    <None Include="..\..\build\find-game-folder.targets" Link="build\find-game-folder.targets" />
    <None Include="..\..\docs\technical\mod-package.md" Link="mod-build-config.md" />
  </ItemGroup>

  <ItemGroup>
    <Reference Include="Microsoft.Build" />
    <Reference Include="Microsoft.Build.Framework" />
    <Reference Include="Microsoft.Build.Utilities.v4.0" />
    <Reference Include="System.IO.Compression" />
    <Reference Include="System.Web.Extensions" />
  </ItemGroup>

  <ItemGroup>
    <None Include="..\..\docs\technical\mod-package.md">
      <Link>mod-package.md</Link>
    </None>
  </ItemGroup>

  <ItemGroup>
    <None Update="assets\nuget-icon.png">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>

  <Import Project="..\SMAPI.Internal\SMAPI.Internal.projitems" Label="Shared" />
  <Import Project="..\..\build\common.targets" />
  <Import Project="..\..\build\prepare-nuget-package.targets" />

</Project>