-
Notifications
You must be signed in to change notification settings - Fork 1
/
TModder.csproj
81 lines (74 loc) · 2.79 KB
/
TModder.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<Project Sdk="Microsoft.NET.Sdk">
<!-- Project Metadata -->
<PropertyGroup>
<OutputType>exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>1.0.0</Version>
<Authors>Minset</Authors>
<Description>A modding API for Terraria</Description>
<LangVersion>latest</LangVersion>
<!-- Build Configuration -->
<Configuration>Debug</Configuration>
<Platform>AnyCPU</Platform>
<FileAlignment>512</FileAlignment>
<Optimize>false</Optimize>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
<BaseAddress>0x00400000</BaseAddress>
<HighEntropyVA>true</HighEntropyVA>
<Prefer32Bit>false</Prefer32Bit>
<NoWarn>$(NoWarn);1591;1701;1702</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\Debug\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<UseWPF>false</UseWPF>
<UseVSHostingProcess>false</UseVSHostingProcess>
<UseApplicationTrust>false</UseApplicationTrust>
</PropertyGroup>
<!-- Project References -->
<ItemGroup>
<!-- Existing References -->
<Reference Include="tModLoader">
<HintPath>tModLoader.dll</HintPath>
</Reference>
<Reference Include="Terraria">
<HintPath>tModLoader.dll</HintPath>
</Reference>
<Reference Include="FNA">
<HintPath>FNA.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil">
<HintPath>Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="ReLogic">
<HintPath>ReLogic.dll</HintPath>
</Reference>
<Reference Include="0Harmony">
<HintPath>0Harmony.dll</HintPath>
</Reference>
<!-- NuGet Package References -->
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<!-- Debugging and Execution Settings -->
<PropertyGroup>
<StartPage>http://localhost/</StartPage>
<StartAction>Program</StartAction>
<StartArguments>-arg1 -arg2</StartArguments>
<StartProgram>$(TargetPath)</StartProgram>
<StartWorkingDirectory>$(OutputPath)</StartWorkingDirectory>
</PropertyGroup>
<!-- Publishing Settings -->
<PropertyGroup>
<PublishTrimmed>false</PublishTrimmed>
<PublishReadyToRun>false</PublishReadyToRun>
<PublishSingleFile>false</PublishSingleFile>
<PublishReadyToRunShowWarnings>false</PublishReadyToRunShowWarnings>
<PublishReadyToRunUseCrossgen>false</PublishReadyToRunUseCrossgen>
<PublishReadyToRunEmitSymbols>false</PublishReadyToRunEmitSymbols>
<PublishReadyToRunTrimMode>Link</PublishReadyToRunTrimMode>
</PropertyGroup>
</Project>