-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev-flow.csproj
More file actions
64 lines (54 loc) · 2.29 KB
/
dev-flow.csproj
File metadata and controls
64 lines (54 loc) · 2.29 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
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>dev_flow</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets\dev-flow-icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants);WINDOWS11_OR_LATER</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>$(DefineConstants);WINDOWS11_OR_LATER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Folder Include="Behaviours\"/>
<Folder Include="Services\"/>
<Content Include="Monaco\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Remove="Assets\Images\Icons\home.svg"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="gong-wpf-dragdrop" Version="3.2.1" />
<PackageReference Include="MahApps.Metro" Version="2.4.10"/>
<PackageReference Include="MahApps.Metro.IconPacks" Version="4.11.0"/>
<PackageReference Include="Markdig" Version="0.36.2"/>
<PackageReference Include="MaterialDesignThemes.MahApps" Version="1.0.0"/>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2420.47"/>
<PackageReference Include="RoslynPad.Editor.Windows" Version="4.4.0"/>
</ItemGroup>
<ItemGroup>
<None Remove="Assets\dev-flow-icon.ico"/>
<Resource Include="Assets\dev-flow-icon.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>