-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathModernStartMenu_MVVM.csproj
51 lines (43 loc) · 1.72 KB
/
ModernStartMenu_MVVM.csproj
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Images\DarkMode.png" />
<None Remove="Resources\Images\githubBlack.png" />
<None Remove="Resources\Images\settingsIcon.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.0.0-preview5" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.790-prerelease" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.31" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
<PackageReference Include="XamlFlair.WPF" Version="1.2.7" />
<PackageReference Include="WinCopies.WindowsAPICodePack.Shell" Version="3.0.0-preview" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\Images\DarkMode.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Resources\Images\githubBlack.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\OpenWeatherMapDotNet\OpenWeatherMapDotNet\OpenWeatherMapDotNet.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Images\settingsIcon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Page Update="Resources\Styles\DarkTheme.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>