-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyPiUI.Sample.csproj
More file actions
58 lines (54 loc) · 2.13 KB
/
MyPiUI.Sample.csproj
File metadata and controls
58 lines (54 loc) · 2.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\MyPiUI\MyPiUI.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="TestScene.xml" />
<None Remove="ui.xsd" />
<Content Update="UI\TestScene.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="UI\ui.xsd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="UI\TestScene.xml" />
<Content Include="UI\TestScene.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="UI\OtherScene.xml" />
<None Remove="UI\Images\raven.bmp" />
<None Remove="UI\Images\raven5.png" />
<None Remove="UI\Images\ravenmask.png" />
<None Remove="UI\Images\logo.png" />
<Content Include="UI\Images\logo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="UI\Images\icon-small.png" />
<Content Include="UI\Images\icon-small.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="UI\Images\home.png" />
<Content Include="UI\Images\home.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="UI\Images\clock.png" />
<Content Include="UI\Images\clock.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="UI\Images\gear.png" />
<Content Include="UI\Images\gear.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="UI\SettingsScene.xml" />
<None Remove="UI\SecondaryScene.xml" />
<Content Include="UI\SecondaryScene.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>