forked from AscensionGameDev/Intersect-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (16 loc) · 857 Bytes
/
Directory.Build.props
File metadata and controls
23 lines (16 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<IntersectRepoPath Condition="'$(IntersectRepoPath)' == ''">$(MSBuildProjectDirectory)\..</IntersectRepoPath>
</PropertyGroup>
<Import Project=".\Common.props"/>
<Import Condition="Exists('$(IntersectRepoPath)/CustomCommon.props')" Project=".\CustomCommon.props" />
<Import Project=".\Intersect.props"/>
<PropertyGroup>
<IntersectProjectName>$(MSBuildProjectName.Substring(10))</IntersectProjectName>
</PropertyGroup>
<PropertyGroup>
<NetworkKeyOutputDir>$(IntersectRepoPath)\Intersect.Network\bin\$(IntersectConfiguration)\keys</NetworkKeyOutputDir>
<NetworkHandshakePublicKey>$(NetworkKeyOutputDir)\network.handshake.bkey.pub</NetworkHandshakePublicKey>
<NetworkHandshakePrivateKey>$(NetworkKeyOutputDir)\network.handshake.bkey</NetworkHandshakePrivateKey>
</PropertyGroup>
</Project>