forked from erkle64/FoundryCommands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Foundry.props
20 lines (19 loc) · 930 Bytes
/
Foundry.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Path to the Foundry folder -->
<FoundryInstallPath>G:\Games\FoundryDemo2\</FoundryInstallPath>
<!-- Path to mods folder -->
<FoundryModsPath>$(FoundryInstallPath)Mods\</FoundryModsPath>
<!-- Path to Foundry assemblies folder -->
<FoundryAssembliesPath>$(FoundryInstallPath)Foundry_Data\Managed\</FoundryAssembliesPath>
<!-- Target mod folder name -->
<ModFolderName>FoundryCommands</ModFolderName>
<!-- Target mod directory -->
<TargetModDir>$(FoundryModsPath)$(ModFolderName)</TargetModDir>
<!-- Target mod path -->
<TargetModPath>$(TargetModDir)\</TargetModPath>
<!-- Unfoundry assembly path -->
<UnfoundryAssemblyPath>$(FoundryModsPath)A_Unfoundry\Unfoundry.dll</UnfoundryAssemblyPath>
</PropertyGroup>
</Project>