-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathServiceControl.Config.csproj
More file actions
63 lines (53 loc) · 2.13 KB
/
ServiceControl.Config.csproj
File metadata and controls
63 lines (53 loc) · 2.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
<OutputType>WinExe</OutputType>
<AssemblyName>Particular.ServiceControl</AssemblyName>
<ApplicationIcon>App.ico</ApplicationIcon>
<UseWpf>true</UseWpf>
<ApplicationManifest>app.manifest</ApplicationManifest>
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile><!-- Rider cannot debug PublishSingleFile builds -->
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceControlInstaller.Engine\ServiceControlInstaller.Engine.csproj" />
</ItemGroup>
<!-- Fody and friends -->
<ItemGroup>
<PackageReference Include="Fody" PrivateAssets="All" />
<PackageReference Include="PropertyChanged.Fody" PrivateAssets="All" />
<PackageReference Include="PropertyChanging.Fody" PrivateAssets="All" />
<PackageReference Include="Validar.Fody" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac" />
<PackageReference Include="Caliburn.Micro" />
<PackageReference Include="FluentValidation" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" />
<PackageReference Include="Mindscape.Raygun4Net.NetCore" />
<PackageReference Include="ReactiveUI.WPF" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Remove="App.xaml" />
<Page Include="App.xaml" />
</ItemGroup>
<ItemGroup>
<None Remove="splash.png" />
<SplashScreen Include="splash.png" />
</ItemGroup>
<ItemGroup>
<None Remove="App.ico" />
<Resource Include="App.ico" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\**\*.*" />
<Resource Include="Resources\**\*.*" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="ServiceControl.Config.Tests" />
</ItemGroup>
</Project>