forked from kbitGit/pong_axengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPong.csproj
More file actions
21 lines (17 loc) · 828 Bytes
/
Pong.csproj
File metadata and controls
21 lines (17 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<CodeAnalysisRuleSet>..\..\AxEngine\props\default.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="Exists('..\..\AxEngine\Engine\Engine.csproj')">
<AximoEnginePath>..\..\AxEngine</AximoEnginePath>
</PropertyGroup>
<ItemGroup Condition="$(AximoEnginepath) == ''">
<PackageReference Include="Aximo" Version="1.0.11" />
</ItemGroup>
<ItemGroup Condition="$(AximoEnginepath) != ''">
<ProjectReference Include="$(AximoEnginePath)\Engine\Engine.csproj" />
</ItemGroup>
<Import Condition="$(AximoEnginepath) != ''" Project="$(AximoEnginePath)\props\SharedProjectSettings.props" />
</Project>