-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathOrigins.csproj
More file actions
40 lines (40 loc) · 1.53 KB
/
Copy pathOrigins.csproj
File metadata and controls
40 lines (40 loc) · 1.53 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>Origins</AssemblyName>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="AlchemistNPCLite">
<HintPath>..\ModAssemblies\AlchemistNPCLite_v1.9.8.dll</HintPath>
</Reference>
<Reference Include="AltLibrary">
<HintPath>..\ModAssemblies\AltLibrary_v2.2.dll</HintPath>
</Reference>
<Reference Include="BetterDialogue">
<HintPath>..\ModAssemblies\BetterDialogue_v1.1.6.3.dll</HintPath>
</Reference>
<Reference Include="CalamityMod">
<HintPath>..\ModAssemblies\CalamityMod_v2.0.5.dll</HintPath>
</Reference>
<Reference Include="Fargowiltas">
<HintPath>..\ModAssemblies\Fargowiltas_v3.3.6.2.dll</HintPath>
</Reference>
<Reference Include="PegasusLib">
<HintPath>..\ModAssemblies\PegasusLib_v1.1.4.3.dll</HintPath>
</Reference>
<Reference Include="ThoriumMod">
<HintPath>..\ModAssemblies\ThoriumMod.dll</HintPath>
</Reference>
<Reference Include="MagicStorage">
<HintPath>..\ModAssemblies\MagicStorage_v0.7.0.9.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="cd $(ProjectDir)\effects
CheckFXCompile.exe" />
</Target>
</Project>