2019-09-14 05:22:45 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-05-25 13:13:28 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>net4.5;netstandard2.0</TargetFrameworks>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<OutputPath>..\..\bin\$(Configuration)\SMAPI.Toolkit</OutputPath>
|
2019-04-25 11:45:34 +08:00
|
|
|
|
<DocumentationFile>..\..\bin\$(Configuration)\SMAPI.Toolkit\$(TargetFramework)\SMAPI.Toolkit.xml</DocumentationFile>
|
2018-12-27 15:40:57 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2019-09-14 05:22:45 +08:00
|
|
|
|
<PlatformTarget Condition="'$(TargetFramework)' == 'net4.5'">x86</PlatformTarget>
|
2019-05-05 01:53:49 +08:00
|
|
|
|
<RootNamespace>StardewModdingAPI.Toolkit</RootNamespace>
|
2018-05-25 13:13:28 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-06-25 09:26:42 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\build\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-05-25 13:13:28 +08:00
|
|
|
|
<ItemGroup>
|
2019-01-05 07:32:12 +08:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.8.11" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
2018-05-26 07:26:09 +08:00
|
|
|
|
<PackageReference Include="Pathoschild.Http.FluentClient" Version="3.2.0" />
|
2019-06-18 02:49:05 +08:00
|
|
|
|
<PackageReference Include="System.Management" Version="4.5.0" Condition="'$(OS)' == 'Windows_NT'" />
|
2018-05-25 13:13:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-06-25 09:26:42 +08:00
|
|
|
|
<ItemGroup>
|
2019-04-25 11:45:34 +08:00
|
|
|
|
<ProjectReference Include="..\SMAPI.Toolkit.CoreInterfaces\SMAPI.Toolkit.CoreInterfaces.csproj" />
|
2018-06-25 09:26:42 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-05-25 13:51:04 +08:00
|
|
|
|
<Import Project="..\..\build\common.targets" />
|
2018-05-25 13:13:28 +08:00
|
|
|
|
|
|
|
|
|
</Project>
|