forked from glzr-io/glazewm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlazeWM.App.csproj
36 lines (32 loc) · 1.43 KB
/
GlazeWM.App.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7-windows10.0.17763.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<DebugType>embedded</DebugType>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
<AssemblyName>GlazeWM</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\GlazeWM.App.Cli\GlazeWM.App.Cli.csproj" />
<ProjectReference Include="..\GlazeWM.App.IpcServer\GlazeWM.App.IpcServer.csproj" />
<ProjectReference Include="..\GlazeWM.App.Watcher\GlazeWM.App.Watcher.csproj" />
<ProjectReference Include="..\GlazeWM.App.WindowManager\GlazeWM.App.WindowManager.csproj" />
<ProjectReference Include="..\GlazeWM.Bar\GlazeWM.Bar.csproj" />
<ProjectReference Include="..\GlazeWM.Domain\GlazeWM.Domain.csproj" />
<ProjectReference Include="..\GlazeWM.Infrastructure\GlazeWM.Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\icon.ico" />
<None Remove="Resources\sample-config.yaml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\icon.ico">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</EmbeddedResource>
<Resource Include="Resources\MaterialIcons-Regular.ttf" />
<EmbeddedResource Include="Resources\sample-config.yaml">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</EmbeddedResource>
</ItemGroup>
</Project>