-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDirectory.Build.props
28 lines (22 loc) · 992 Bytes
/
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
23
24
25
26
27
28
<Project>
<PropertyGroup>
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
<OutputPath>$(SolutionDir)build\$(Configuration)\</OutputPath>
<License>MIT</License>
<Authors>Jean-Philippe Bruyère</Authors>
<LangVersion>7.3</LangVersion>
<CrowVersion>1.2.0</CrowVersion>
<CrowPackageVersion>$(CrowVersion)-beta</CrowPackageVersion>
<!-- If you dont have a native libstb on your system, enable the managed version of stb here
TODO: this could be detected on startup or install automatically-->
<CrowStbSharp>true</CrowStbSharp>
<!-- Compile with logging enabled, this will slow down apps, use this only
for debugging purpose-->
<CrowDebugLogEnabled>false</CrowDebugLogEnabled>
<!-- Collect several statistics on widgets-->
<CrowDebugStatsEnabled>false</CrowDebugStatsEnabled>
<!-- Used only by CrowIDE and CrowEdit-->
<CrowDesignModeEnabled>false</CrowDesignModeEnabled>
<GlfwSharpVersion>0.2.14</GlfwSharpVersion>
</PropertyGroup>
</Project>