-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathWriteableBitmapExBlitSample.Wpf.csproj
More file actions
33 lines (26 loc) · 1.2 KB
/
WriteableBitmapExBlitSample.Wpf.csproj
File metadata and controls
33 lines (26 loc) · 1.2 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
31
32
33
<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="..\WriteableBitmapExBlitSample\HslColor.cs" Link="HslColor.cs" />
<Compile Include="..\WriteableBitmapExBlitSample\Particle.cs" Link="Particle.cs" />
<Compile Include="..\WriteableBitmapExBlitSample\ParticleEmitter.cs" Link="ParticleEmitter.cs" />
</ItemGroup>
<ItemGroup>
<Resource Include="..\WriteableBitmapExBlitSample\Data\circle.png" Link="Data\circle.png" />
<Resource Include="..\WriteableBitmapExBlitSample\Data\FlowerBurst.jpg" Link="Data\FlowerBurst.jpg" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WriteableBitmapEx.Wpf\WriteableBitmapEx.Wpf.csproj" />
</ItemGroup>
</Project>