forked from spacechase0/Magic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMagic.csproj
33 lines (26 loc) · 952 Bytes
/
Magic.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Magic</AssemblyName>
<RootNamespace>Magic</RootNamespace>
<Version>0.3.1</Version>
<TargetFramework>net452</TargetFramework>
<Platforms>x86</Platforms>
<PlatformTarget>x86</PlatformTarget>
<IgnoreModFilePatterns>\.psd$</IgnoreModFilePatterns>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="3.1.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="PyTK">
<HintPath>$(GamePath)\Mods\PyTK\PyTK.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SpaceCore_SDV\SpaceCore.csproj" />
</ItemGroup>
<Import Project="$(SolutionDir)\common.targets" />
<Import Project="..\SpaceShared\SpaceShared.projitems" Label="Shared" />
</Project>