Skip to content

Commit 85a91e3

Browse files
authored
Merge pull request #935 from UrtsiSantsi/fix-929
Copy test image to output folder
2 parents 19985b4 + ad01847 commit 85a91e3

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
6-
</PropertyGroup>
7-
8-
<ItemGroup>
9-
<ProjectReference Include="..\..\..\Libs\GdkPixbuf-2.0\GdkPixbuf-2.0.csproj" />
10-
</ItemGroup>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net6.0</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<ProjectReference Include="..\..\..\Libs\GdkPixbuf-2.0\GdkPixbuf-2.0.csproj" />
10+
</ItemGroup>
11+
12+
<Target Name="CopyTestImage" AfterTargets="AfterBuild">
13+
<Copy SourceFiles="test.bmp" DestinationFolder="$(OutDir)" />
14+
</Target>
1115

1216
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<ItemGroup>
4-
<ProjectReference Include="..\..\..\Libs\GdkPixbuf-2.0\GdkPixbuf-2.0.csproj" />
5-
</ItemGroup>
6-
73
<PropertyGroup>
84
<OutputType>Exe</OutputType>
95
<TargetFramework>net6.0</TargetFramework>
106
<Nullable>enable</Nullable>
117
</PropertyGroup>
128

9+
<ItemGroup>
10+
<ProjectReference Include="..\..\..\Libs\GdkPixbuf-2.0\GdkPixbuf-2.0.csproj" />
11+
</ItemGroup>
12+
13+
<Target Name="CopyTestImage" AfterTargets="AfterBuild">
14+
<Copy SourceFiles="test.bmp" DestinationFolder="$(OutDir)" />
15+
</Target>
16+
1317
</Project>

0 commit comments

Comments
 (0)