-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTSWVote.csproj
47 lines (47 loc) · 1.73 KB
/
TSWVote.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>Build\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutputPath>Build\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json">
<HintPath>References\Newtonsoft.Json.dll</HintPath>
<Private>False</Private>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Reference>
<Reference Include="OTAPI">
<HintPath>References\OTAPI.dll</HintPath>
<Private>False</Private>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Reference>
<Reference Include="TerrariaServer">
<HintPath>References\TerrariaServer.dll</HintPath>
<Private>False</Private>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Reference>
<Reference Include="TShock.Server">
<HintPath>References\TShock.Server.dll</HintPath>
<Private>False</Private>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Reference>
<Reference Include="TShockAPI">
<HintPath>References\TShockAPI.dll</HintPath>
<Private>False</Private>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="del Build\TSWVote.deps.json" />
</Target>
</Project>