mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-24 03:41:02 +00:00
Use custom property to select correct Build.Tasks.dll directory.
This commit is contained in:
parent
1e73ae0f1d
commit
0bbc524cbe
|
@ -2,8 +2,9 @@
|
|||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' != 'Debug' ">Release</Configuration>
|
||||
<BuildTasksPath Condition="'$(BuildTasksPath)' == ''">..\..\Binaries\OpenTK\$(Configuration)</BuildTasksPath>
|
||||
<TaskConfig Condition=" '$(Configuration)' != 'Debug' ">Release</TaskConfig>
|
||||
<TaskConfig Condition=" '$(Configuration)' == 'Debug' ">Debug</TaskConfig>
|
||||
<BuildTasksPath Condition="'$(BuildTasksPath)' == ''">..\..\Binaries\OpenTK\$(TaskConfig)</BuildTasksPath>
|
||||
<BuildTasksLib>$(BuildTasksPath)\Build.Tasks.dll</BuildTasksLib>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{75DC22B1-113F-4A66-96B9-2FF8208C10E8}</ProjectGuid>
|
||||
<Configuration Condition="$(Configuration) == ''">Release</Configuration>
|
||||
</PropertyGroup>
|
||||
<Import Project="..\Build.Tasks\Common.xml" />
|
||||
<Target Name="UpdateVersion">
|
||||
|
@ -25,5 +24,6 @@
|
|||
</Target>
|
||||
<Target Name="Rebuild">
|
||||
<CallTarget Targets="UpdateVersion" />
|
||||
</Target> <Target Name="Clean" />
|
||||
</Project>
|
||||
</Target>
|
||||
<Target Name="Clean" />
|
||||
</Project>
|
||||
|
|
Loading…
Reference in a new issue