12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <ProductVersion>10.0.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{8592FA21-37B6-41C8-BC7F-17EB4930B96A}</ProjectGuid>
- <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <OutputType>Exe</OutputType>
- <RootNamespace>BackgroundThreadTester</RootNamespace>
- <AssemblyName>BackgroundThreadTester</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG;</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <PlatformTarget>x86</PlatformTarget>
- <ConsolePause>false</ConsolePause>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <DebugType>none</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <PlatformTarget>x86</PlatformTarget>
- <ConsolePause>false</ConsolePause>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Drawing" />
- <Reference Include="MonoMac" />
- <Reference Include="System.Windows.Forms" />
- </ItemGroup>
- <ItemGroup>
- <None Include="Info.plist"></None>
- <None Include="Content\beehive.png" />
- <None Include="README.md" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
- <ItemGroup>
- <Folder Include="Content\" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Content\fntStandard.xnb" />
- <Content Include="Content\UiCursor.xnb" />
- <Content Include="Content\beehive.xnb" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Enums.cs" />
- <Compile Include="Game1.cs" />
- <Compile Include="InputManager.cs" />
- <Compile Include="Object.cs" />
- <Compile Include="Program.cs" />
- <Compile Include="TextManager.cs" />
- <Compile Include="TestTexture.cs" />
- </ItemGroup>
- <ItemGroup>
- <InterfaceDefinition Include="MainMenu.xib" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
- <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
- <Name>MonoGame.Framework.MacOS</Name>
- </ProjectReference>
- </ItemGroup>
- </Project>
|