-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwis.WpfDebugger.csproj
38 lines (32 loc) · 1.27 KB
/
Swis.WpfDebugger.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>Link</TrimMode>
<InvariantGlobalization>true</InvariantGlobalization>
<!-- The below will cause our exception messages to be translated. -->
<UseSystemResourceKeys>false</UseSystemResourceKeys>
<!-- This is an exe, so don't try to use SourceLink -->
<IsPackable>false</IsPackable>
<DeterministicSourcePaths>false</DeterministicSourcePaths>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\**" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dirkster.AvalonDock" Version="4.70.2" />
<PackageReference Include="Dirkster.AvalonDock.Themes.VS2013" Version="4.71.1" />
<PackageReference Include="fernandreu.ScintillaNET.WPF" Version="3.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Swis.Development\Swis.Development.csproj" />
<ProjectReference Include="..\Swis.Runtime\Swis.Runtime.csproj" />
</ItemGroup>
</Project>