26 lines
633 B
XML
26 lines
633 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<EngineRootPath>../engine</EngineRootPath>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(EngineRootPath)/Directory.Build.props" />
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(EngineRootPath)/OpenRA.Game/OpenRA.Game.csproj">
|
|
<Private>False</Private>
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="$(EngineRootPath)/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj">
|
|
<Private>False</Private>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(EngineRootPath)/AUTHORS">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|