-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathWriteableBitmapEx.TextExample.csproj
More file actions
31 lines (25 loc) · 1.12 KB
/
WriteableBitmapEx.TextExample.csproj
File metadata and controls
31 lines (25 loc) · 1.12 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
<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>
<Content Include="..\WriteableBitmapExBlitAlphaRepro.WinPhone8\Assets\Overlays\19.JPG" Link="Assets\Overlays\19.JPG">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\WriteableBitmapExBlitAlphaRepro.WinPhone8\Assets\Overlays\nEW.png" Link="Assets\Overlays\nEW.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Source\WriteableBitmapEx.Wpf\WriteableBitmapEx.Wpf.csproj" />
</ItemGroup>
</Project>