2019-09-14 05:22:45 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-05-25 13:13:28 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-08-10 05:47:53 +08:00
|
|
|
|
<AssemblyName>SMAPI.Toolkit</AssemblyName>
|
|
|
|
|
<RootNamespace>StardewModdingAPI.Toolkit</RootNamespace>
|
|
|
|
|
<Description>A library which encapsulates mod-handling logic for mod managers and tools. Not intended for use by mods.</Description>
|
2018-05-25 13:13:28 +08:00
|
|
|
|
<TargetFrameworks>net4.5;netstandard2.0</TargetFrameworks>
|
2018-12-27 15:40:57 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2020-02-01 11:27:12 +08:00
|
|
|
|
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\SMAPI.Toolkit.xml</DocumentationFile>
|
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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-03-23 07:26:09 +08:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.23" />
|
2019-11-25 01:13:34 +08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-05-08 09:15:29 +08:00
|
|
|
|
<PackageReference Include="Pathoschild.Http.FluentClient" Version="4.0.0" />
|
2019-06-18 02:49:05 +08:00
|
|
|
|
<PackageReference Include="System.Management" Version="4.5.0" Condition="'$(OS)' == 'Windows_NT'" />
|
2019-06-18 06:51:12 +08:00
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.5.0" Condition="'$(OS)' == 'Windows_NT' AND '$(TargetFramework)' == 'netstandard2.0'" />
|
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>
|