forked from BAndysc/WoWDatabaseEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
22 lines (22 loc) · 1.29 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<RestoreAdditionalProjectSources>
https://nuget.avaloniaui.net/repository/avalonia-all/index.json
</RestoreAdditionalProjectSources>
<NoWarn>CS0067,CS3021,CS1998,CA1416,CS1591</NoWarn>
<AvaloniaVersion>0.10.999-cibuild0016933-beta</AvaloniaVersion>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup>
<!-- SolutionDir is not defined when building projects explicitly -->
<SolutionDir Condition=" '$(SolutionDir)' == '' ">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), WoWDatabaseEditor.sln))\</SolutionDir>
<!-- Output paths -->
<BaseIntermediateOutputPath>$(SolutionDir)bin\obj\$(Configuration)\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<IntermediateOutputPath>$(SolutionDir)bin\obj\$(Configuration)\$(MSBuildProjectName)\</IntermediateOutputPath>
<MSBuildProjectExtensionsPath>$(IntermediateOutputPath)\</MSBuildProjectExtensionsPath>
<!-- <OutputPath>$(SolutionDir)bin\out\$(Configuration)\</OutputPath>-->
<OutDir>$(OutputPath)</OutDir>
<DocumentationFile>$(SolutionDir)bin\doc\$(Configuration)\$(MSBuildProjectName).xml</DocumentationFile>
</PropertyGroup>
</Project>