-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBuild.props
More file actions
52 lines (49 loc) · 2.3 KB
/
Build.props
File metadata and controls
52 lines (49 loc) · 2.3 KB
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
<Project>
<ItemGroup>
<!-- /Refs Path References-->
<Reference Include="Farseer.NetStandard">
<HintPath>..\Refs\Farseer.NetStandard.dll</HintPath>
</Reference>
<Reference Include="Lidgren.NetStandard">
<HintPath>..\Refs\Lidgren.NetStandard.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil">
<HintPath>..\Refs\Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="MoonSharp.Interpreter">
<HintPath>..\Refs\MoonSharp.Interpreter.dll</HintPath>
</Reference>
<Reference Include="XNATypes">
<HintPath>..\Refs\XNATypes.dll</HintPath>
</Reference>
<!-- Luatrauuma NuGet Package References -->
<PackageReference Include="HarmonyX" Version="2.16.0" />
<PackageReference Include="LightInject" Version="6.6.4" />
<PackageReference Include="OneOf" Version="3.0.271" />
<PackageReference Include="FluentResults" Version="3.16.0" />
</ItemGroup>
<!-- User/Mod Settings -->
<PropertyGroup>
<!-- IMPORTANT: Should point to <Barotrauma_Install>\LocalMods\<MyModName>\ -->
<!-- IMPORTANT: ModDeplyDir Path must end with '\' -->
<ModDeployDir>..\LUATRAMA_DEBUG_LOCALMODS_MYMODDIR\</ModDeployDir>
<!-- IMPORTANT: Avoid the use of special (IE: / : ; , \ < > ?) (periods "." are good) and non-english characters in the AssemblyName and RootNamespace.-->
<!-- You must also change the assembly.dll name in ModConfig.xml to match the AssemblyName. -->
<AssemblyName>MyModName</AssemblyName>
<RootNamespace>MyModName</RootNamespace>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<!-- These two numbers should match under almost all circumstances. -->
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Authors />
</PropertyGroup>
<!-- You shouldn't change these unless you are having issues. -->
<PropertyGroup>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
</Project>