Avalonia.UnitTests.csproj 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
  4. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  5. <OutputType>Library</OutputType>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  8. <DebugSymbols>true</DebugSymbols>
  9. <DebugType>full</DebugType>
  10. <Optimize>false</Optimize>
  11. <OutputPath>bin\Debug\</OutputPath>
  12. <DefineConstants>DEBUG;TRACE</DefineConstants>
  13. <ErrorReport>prompt</ErrorReport>
  14. <WarningLevel>4</WarningLevel>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  17. <DebugType>pdbonly</DebugType>
  18. <Optimize>true</Optimize>
  19. <OutputPath>bin\Release\</OutputPath>
  20. <DefineConstants>TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <ItemGroup Condition="'$(TargetFramework)' == 'net461'">
  25. <Reference Include="System" />
  26. <Reference Include="System.Core" />
  27. <Reference Include="System.Xml.Linq" />
  28. <Reference Include="System.Data.DataSetExtensions" />
  29. <Reference Include="Microsoft.CSharp" />
  30. <Reference Include="System.Data" />
  31. <Reference Include="System.Net.Http" />
  32. <Reference Include="System.Xml" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <ProjectReference Condition="'$(TargetFramework)' == 'net461'" Include="..\..\src\Avalonia.DotNetFrameworkRuntime\Avalonia.DotNetFrameworkRuntime.csproj" />
  36. <ProjectReference Condition="'$(TargetFramework)' == 'netcoreapp2.0'" Include="..\..\src\Avalonia.DotNetCoreRuntime\Avalonia.DotNetCoreRuntime.csproj" />
  37. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj" />
  38. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj" />
  39. <ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj" />
  40. <ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj" />
  41. <ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj" />
  42. <ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj" />
  43. <ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj" />
  44. <ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj" />
  45. <ProjectReference Include="..\..\src\Avalonia.Visuals\Avalonia.Visuals.csproj" />
  46. <ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj" />
  47. <ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <None Include="app.config" />
  51. </ItemGroup>
  52. <Import Project="..\..\build\Moq.props" />
  53. <Import Project="..\..\build\Rx.props" />
  54. <Import Project="..\..\build\XUnit.props" />
  55. <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
  56. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
  57. </ItemGroup>
  58. </Project>