forked from BornToBeRoot/NETworkManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNETworkManager.csproj
More file actions
147 lines (147 loc) · 6.6 KB
/
Copy pathNETworkManager.csproj
File metadata and controls
147 lines (147 loc) · 6.6 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<!--
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
-->
<CsWinRTWindowsMetadata>sdk</CsWinRTWindowsMetadata>
<RootNamespace>NETworkManager</RootNamespace>
<AssemblyName>NETworkManager</AssemblyName>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<StartupObject>NETworkManager.App</StartupObject>
<ApplicationIcon>NETworkManager.ico</ApplicationIcon>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Authors>BornToBeRoot</Authors>
<PackageProjectUrl>https://github.com/BornToBeRoot/NETworkManager</PackageProjectUrl>
<RepositoryUrl>https://github.com/BornToBeRoot/NETworkManager</RepositoryUrl>
<PackageLicenseFile>NETworkManager.txt</PackageLicenseFile>
<PackageIcon>NETworkManager.ico</PackageIcon>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<Description>A powerful tool for managing networks and troubleshoot network problems!</Description>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Remove="log4net.config" />
<None Remove="NETworkManager.ico" />
<None Remove="SplashScreen.png" />
<None Include="..\.editorconfig" Link=".editorconfig" />
<None Include="NETworkManager.ico">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<!-- Target 6.0.0 for compatibility https://github.com/dotnet/core/issues/7176 -->
<ItemGroup>
<FrameworkReference Update="Microsoft.WindowsDesktop.App;Microsoft.WindowsDesktop.App.WPF;Microsoft.WindowsDesktop.App.WindowsForms" TargetingPackVersion="6.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AirspaceFixer" Version="1.0.6" />
<PackageReference Include="AWSSDK.EC2" Version="3.7.109.1" />
<PackageReference Include="DnsClient" Version="1.7.0" />
<PackageReference Include="IPNetwork2" Version="2.6.508" />
<PackageReference Include="Lextm.SharpSnmpLib" Version="12.5.1" />
<PackageReference Include="LiveCharts.Wpf" Version="0.9.7" />
<PackageReference Include="LoadingIndicators.WPF" Version="0.0.1" />
<PackageReference Include="log4net" Version="2.0.15" />
<PackageReference Include="MahApps.Metro" Version="2.4.9" />
<PackageReference Include="MahApps.Metro.IconPacks" Version="4.11.0" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1418.22" />
<PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.0.1" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.7" />
<Reference Include="AxMSTSCLib">
<HintPath>$(TargetDir)\AxMSTSCLib.dll</HintPath>
</Reference>
<Reference Include="MSTSCLib">
<HintPath>$(TargetDir)\MSTSCLib.dll</HintPath>
</Reference>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="log4net.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\3rdparty\Dragablz\Dragablz\Dragablz.csproj" />
<ProjectReference Include="..\NETworkManager.Controls\NETworkManager.Controls.csproj" />
<ProjectReference Include="..\NETworkManager.Converters\NETworkManager.Converters.csproj" />
<ProjectReference Include="..\NETworkManager.Documentation\NETworkManager.Documentation.csproj" />
<ProjectReference Include="..\NETworkManager.Localization\NETworkManager.Localization.csproj" />
<ProjectReference Include="..\NETworkManager.Models\NETworkManager.Models.csproj" />
<ProjectReference Include="..\NETworkManager.Profiles\NETworkManager.Profiles.csproj" />
<ProjectReference Include="..\NETworkManager.Settings\NETworkManager.Settings.csproj" />
<ProjectReference Include="..\NETworkManager.Update\NETworkManager.Update.csproj" />
<ProjectReference Include="..\NETworkManager.Utilities.WPF\NETworkManager.Utilities.WPF.csproj" />
<ProjectReference Include="..\NETworkManager.Utilities\NETworkManager.Utilities.csproj" />
<ProjectReference Include="..\NETworkManager.Validators\NETworkManager.Validators.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="NETworkManager.ico" />
<Resource Include="SplashScreen.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Page Update="Controls\AWSSessionManagerControl.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Resources\Styles\WindowStyles.xaml">
<CopyToOutputDirectory></CopyToOutputDirectory>
</Page>
<Page Update="Views\CredentialsChangePasswordDialog.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\AWSProfileDialog.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\DropdownDialog.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Views\NetworkConnectionView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\IPAddressDialog.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\PortProfilesDialog.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Views\AWSSessionManagerConnectDialog.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\AWSSessionManagerHostView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\AWSSessionManagerSettingsView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\BitCalculatorSettingsView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Views\BitCalculatorView.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="PowerShell.exe -ExecutionPolicy Bypass -NoProfile -File "$(ProjectDir)..\..\Scripts\PreBuildEventCommandLine.ps1" "$(TargetDir)"" />
</Target>
</Project>