21 lines
729 B
XML
21 lines
729 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<RootNamespace>stardew_access</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>preview</LangVersion>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AccessibleOutput" Version="1.0.0" />
|
|
<PackageReference Include="AutoHotkey.Interop" Version="1.0.0.1" />
|
|
<PackageReference Include="Lib.Harmony" Version="2.2.0" />
|
|
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="4.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|