Merge pull request #90 from robinkanters/master

Fixed build on Windows, please don't break it again
This commit is contained in:
Drew DeVault 2015-05-21 11:51:49 -06:00
commit f65e96a943

View File

@ -41,11 +41,13 @@
<PropertyGroup Condition=" '$(OS)' == 'OSX' "> <PropertyGroup Condition=" '$(OS)' == 'OSX' ">
<DefineConstants>$(DefineConstants);OSX</DefineConstants> <DefineConstants>$(DefineConstants);OSX</DefineConstants>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup Condition=" '$(OS)' == 'Unix' ">
<Reference Include="MonoGame.Framework, Version=3.4.0.459, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="MonoGame.Framework, Version=3.4.0.459, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\MonoGame.Framework.dll</HintPath> <HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\MonoGame.Framework.dll</HintPath>
<Private>True</Private> <Private>True</Private>
</Reference> </Reference>
</ItemGroup>
<ItemGroup>
<Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL"> <Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
<HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\OpenTK.dll</HintPath> <HintPath>..\packages\MonoGame.Framework.Linux.3.4.0.459\lib\net40\OpenTK.dll</HintPath>
<Private>True</Private> <Private>True</Private>