| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <OutputType>Library</OutputType>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup Condition="'$(TargetFramework)' == 'net461'">
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Net.Http" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Condition="'$(TargetFramework)' == 'net461'" Include="..\..\src\Avalonia.DotNetFrameworkRuntime\Avalonia.DotNetFrameworkRuntime.csproj" />
- <ProjectReference Condition="'$(TargetFramework)' == 'netcoreapp2.0'" Include="..\..\src\Avalonia.DotNetCoreRuntime\Avalonia.DotNetCoreRuntime.csproj" />
- <ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj" />
- <ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Visuals\Avalonia.Visuals.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Include="app.config" />
- </ItemGroup>
- <Import Project="..\..\build\Moq.props" />
- <Import Project="..\..\build\Rx.props" />
- <Import Project="..\..\build\XUnit.props" />
- <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
- </ItemGroup>
- </Project>
|