-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathWriteableBitmapExCurveSample.Wpf.csproj
More file actions
30 lines (24 loc) · 1.19 KB
/
WriteableBitmapExCurveSample.Wpf.csproj
File metadata and controls
30 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.0;net40</TargetFrameworks>
<UseWPF>true</UseWPF>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<OutputPath>..\..\Build\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<OutputPath>..\..\Build\Debug\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\WriteableBitmapExCurveSample\ControlPoint.cs" Link="ControlPoint.cs" />
<Compile Include="..\WriteableBitmapExCurveSample\Plant\Branch.cs" Link="Plant\Branch.cs" />
<Compile Include="..\WriteableBitmapExCurveSample\Plant\BranchPoint.cs" Link="Plant\BranchPoint.cs" />
<Compile Include="..\WriteableBitmapExCurveSample\Plant\Plant.cs" Link="Plant\Plant.cs" />
<Compile Include="..\WriteableBitmapExCurveSample\Plant\Vector.cs" Link="Plant\Vector.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Source\WriteableBitmapEx.Wpf\WriteableBitmapEx.Wpf.csproj" />
</ItemGroup>
</Project>