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
|
|
|
|
<RootNamespace>StardewModdingAPI.Toolkit</RootNamespace>
|
|
|
|
|
<Description>A library which encapsulates mod-handling logic for mod managers and tools. Not intended for use by mods.</Description>
|
2021-08-13 09:26:10 +08:00
|
|
|
|
<TargetFrameworks>net5.0; netstandard2.0</TargetFrameworks>
|
2020-06-14 22:55:52 +08:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2018-05-25 13:13:28 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-03-18 08:36:31 +08:00
|
|
|
|
<Import Project="..\..\build\common.targets" />
|
|
|
|
|
|
2018-05-25 13:13:28 +08:00
|
|
|
|
<ItemGroup>
|
2022-06-08 08:41:41 +08:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.43" />
|
2022-06-08 09:27:11 +08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2022-10-07 12:21:09 +08:00
|
|
|
|
<PackageReference Include="Pathoschild.Http.FluentClient" Version="4.2.0" />
|
2021-08-13 09:26:10 +08:00
|
|
|
|
<PackageReference Include="System.Management" Version="5.0.0" Condition="'$(OS)' == 'Windows_NT'" />
|
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" Condition="'$(OS)' == 'Windows_NT'" />
|
2022-10-09 09:32:10 +08:00
|
|
|
|
<PackageReference Include="VdfConverter" Version="1.0.3" 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:13:28 +08:00
|
|
|
|
</Project>
|