Testing.csproj 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props')" />
  4. <Import Project="..\packages\NUnit.3.12.0\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.12.0\build\NUnit.props')" />
  5. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  6. <PropertyGroup>
  7. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  9. <ProjectGuid>{FB782E67-C1C0-4230-9BC7-131782757651}</ProjectGuid>
  10. <OutputType>Library</OutputType>
  11. <RootNamespace>OpenVIII.Test</RootNamespace>
  12. <AssemblyName>OpenVIII.Test</AssemblyName>
  13. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. <Deterministic>true</Deterministic>
  17. <NuGetPackageImportStamp>
  18. </NuGetPackageImportStamp>
  19. <TargetFrameworkProfile />
  20. </PropertyGroup>
  21. <PropertyGroup>
  22. <StartupObject />
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  25. <DebugSymbols>true</DebugSymbols>
  26. <OutputPath>..\bin\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <DebugType>full</DebugType>
  29. <PlatformTarget>x64</PlatformTarget>
  30. <LangVersion>latest</LangVersion>
  31. <ErrorReport>prompt</ErrorReport>
  32. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  33. </PropertyGroup>
  34. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  35. <DebugSymbols>true</DebugSymbols>
  36. <OutputPath>bin\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <DebugType>full</DebugType>
  39. <PlatformTarget>x86</PlatformTarget>
  40. <LangVersion>latest</LangVersion>
  41. <ErrorReport>prompt</ErrorReport>
  42. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="MonoGame.Framework, Version=3.7.1.189, Culture=neutral, processorArchitecture=MSIL">
  46. <HintPath>..\packages\MonoGame.Framework.Portable.3.7.1.189\lib\portable-net45+win8+wpa81\MonoGame.Framework.dll</HintPath>
  47. </Reference>
  48. <Reference Include="NAudio, Version=1.10.0.0, Culture=neutral, processorArchitecture=MSIL">
  49. <HintPath>..\packages\NAudio.1.10.0\lib\net35\NAudio.dll</HintPath>
  50. </Reference>
  51. <Reference Include="nunit.framework, Version=3.12.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
  52. <HintPath>..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll</HintPath>
  53. </Reference>
  54. <Reference Include="System" />
  55. <Reference Include="System.Core" />
  56. <Reference Include="System.Windows.Forms" />
  57. <Reference Include="System.Xml" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="Properties\AssemblyInfo.cs" />
  61. <Compile Include="Testing\MIDITest.cs" />
  62. <Compile Include="Testing\CoreTestSuite.cs" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <None Include="App.config" />
  66. <None Include="packages.config" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ProjectReference Include="..\Core\Core.csproj">
  70. <Project>{a5408515-75b8-4eea-8e9f-2c9cd7b56e59}</Project>
  71. <Name>Core</Name>
  72. </ProjectReference>
  73. </ItemGroup>
  74. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  75. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  76. <PropertyGroup>
  77. <ErrorText>Dieses Projekt verweist auf mindestens ein NuGet-Paket, das auf diesem Computer fehlt. Verwenden Sie die Wiederherstellung von NuGet-Paketen, um die fehlenden Dateien herunterzuladen. Weitere Informationen finden Sie unter "http://go.microsoft.com/fwlink/?LinkID=322105". Die fehlende Datei ist "{0}".</ErrorText>
  78. </PropertyGroup>
  79. <Error Condition="!Exists('..\packages\NUnit.3.12.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.12.0\build\NUnit.props'))" />
  80. <Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props'))" />
  81. </Target>
  82. </Project>