-
Notifications
You must be signed in to change notification settings - Fork 73
/
PowerDocu.GUI.csproj
31 lines (28 loc) · 1.2 KB
/
PowerDocu.GUI.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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Fontawesome.sharp" Version="6.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PowerDocu.FlowDocumenter\PowerDocu.FlowDocumenter.csproj" />
<ProjectReference Include="..\PowerDocu.AppDocumenter\PowerDocu.AppDocumenter.csproj" />
<ProjectReference Include="..\PowerDocu.SolutionDocumenter\PowerDocu.SolutionDocumenter.csproj" />
<Content Include="Icons\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
</ItemGroup>
<PropertyGroup>
<Version>2.1.0</Version>
<Copyright>Rene Modery</Copyright>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Icons\PowerDocu.ico</ApplicationIcon>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<DebugType>embedded</DebugType>
<AssemblyName>PowerDocu</AssemblyName>
</PropertyGroup>
</Project>