-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSendItems.csproj
33 lines (29 loc) · 1.09 KB
/
SendItems.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>Denifia.Stardew.SendItems</AssemblyName>
<RootNamespace>Denifia.Stardew.SendItems</RootNamespace>
<Version>2.1.0</Version>
<TargetFramework>net452</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="4.9.4" />
<PackageReference Include="LiteDB" Version="4.1.4" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="3.0.0" />
<PackageReference Include="RestSharp" Version="106.6.10" />
</ItemGroup>
<ItemGroup>
<None Include="config.dev.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="config.online.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="config.localonly.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>