-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
169 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,57 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<Nullable>enable</Nullable> | ||
<TargetFrameworks>net7.0</TargetFrameworks> | ||
<TrimMode>copyused</TrimMode> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NoWarn>CA1416</NoWarn> | ||
<NoWarn>IO0006</NoWarn> | ||
<Version>1.0.0</Version> | ||
<FileVersion>1.0.0</FileVersion> | ||
<AssemblyVersion>1.0.0</AssemblyVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="AutoMapper" Version="12.0.1" /> | ||
<PackageReference Include="Avalonia" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.Desktop" Version="11.0.0" /> | ||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.Headless" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.0.0.1" /> | ||
<PackageReference Include="DynamicData" Version="7.14.2" /> | ||
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="SharpPcap" Version="6.2.5" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" /> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions" Version="19.2.29" /> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions.Analyzers" Version="2022.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions.Extensions" Version="1.0.42" /> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="19.2.29" /> | ||
<PackageReference Include="Splat.DependencyInjection.SourceGenerator" Version="1.1.93" PrivateAssets="all" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Condition="'$(Configuration)' == 'Debug'" Include="**\*.axaml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AvaloniaResource Include="Assets\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Assets\manuf.txt"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Views\DataTemplates\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<Nullable>enable</Nullable> | ||
<TargetFrameworks>net7.0</TargetFrameworks> | ||
<TrimMode>copyused</TrimMode> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
<AssemblyVersion>2.0.0.0</AssemblyVersion> | ||
<FileVersion>2.0.0.0</FileVersion> | ||
<InformationalVersion>2.0.0+7.Branch.master.Sha.707261789d8bdc69a7097b2fe2daa13ebcabe331</InformationalVersion> | ||
<Version>2.0.0</Version> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NoWarn>CA1416</NoWarn> | ||
<NoWarn>IO0006</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="AutoMapper" Version="12.0.1" /> | ||
<PackageReference Include="Avalonia" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.Desktop" Version="11.0.5" /> | ||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.Headless" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.0.2" /> | ||
<PackageReference Include="DynamicData" Version="8.1.1" /> | ||
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="SharpPcap" Version="6.2.5" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" /> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions" Version="19.2.69" /> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions.Analyzers" Version="2022.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions.Extensions" Version="2.0.5" /> | ||
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="19.2.69" /> | ||
<PackageReference Include="Splat.DependencyInjection.SourceGenerator" Version="1.1.93" PrivateAssets="all" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Condition="'$(Configuration)' == 'Debug'" Include="**\*.axaml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AvaloniaResource Include="Assets\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Assets\manuf.txt"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Views\DataTemplates\" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,50 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
<Platforms>AnyCPU;x64</Platforms> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NoWarn>CA1416</NoWarn> | ||
<NoWarn>IO0006</NoWarn> | ||
<Version>1.0.0</Version> | ||
<FileVersion>1.0.0</FileVersion> | ||
<AssemblyVersion>1.0.0</AssemblyVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Title>NetStalker</Title> | ||
<ProductName>NetStalker</ProductName> | ||
<Description>A network tool to control the bandwidth over your local network, it can block internet access form any selected device, or limit its speed using packet redirection, in addition, it can log web activity for the targeted device using a built in packet sniffer.</Description> | ||
<Authors>Hamzi Alsheikh</Authors> | ||
<Copyright>Copyright © Hamzi Alsheikh 2023</Copyright> | ||
<PackageProjectUrl>https://github.com/hmz777/NetStalker.Avalonia</PackageProjectUrl> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/hmz777/NetStalker.Avalonia</RepositoryUrl> | ||
<Product>NetStalker</Product> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<TrimmerRootDescriptor Include="Roots.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<TrimmableAssembly Include="Avalonia.Themes.Fluent" /> | ||
<TrimmableAssembly Include="Avalonia.Themes.Default" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Avalonia" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.Desktop" Version="11.0.0" /> | ||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0" /> | ||
<PackageReference Include="Splat.DependencyInjection.SourceGenerator" Version="1.1.93"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\NetStalkerAvalonia.Core\NetStalkerAvalonia.Core.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
<Platforms>AnyCPU;x64</Platforms> | ||
<AssemblyVersion>2.0.0.0</AssemblyVersion> | ||
<FileVersion>2.0.0.0</FileVersion> | ||
<InformationalVersion>2.0.0+7.Branch.master.Sha.707261789d8bdc69a7097b2fe2daa13ebcabe331</InformationalVersion> | ||
<Version>2.0.0</Version> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NoWarn>CA1416</NoWarn> | ||
<NoWarn>IO0006</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Title>NetStalker</Title> | ||
<ProductName>NetStalker</ProductName> | ||
<Description>A network tool to control the bandwidth over your local network, it can block internet access form any selected device, or limit its speed using packet redirection, in addition, it can log web activity for the targeted device using a built in packet sniffer.</Description> | ||
<Authors>Hamzi Alsheikh</Authors> | ||
<Copyright>Copyright © Hamzi Alsheikh 2023</Copyright> | ||
<PackageProjectUrl>https://github.com/hmz777/NetStalker.Avalonia</PackageProjectUrl> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/hmz777/NetStalker.Avalonia</RepositoryUrl> | ||
<Product>NetStalker</Product> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<TrimmerRootDescriptor Include="Roots.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<TrimmableAssembly Include="Avalonia.Themes.Fluent" /> | ||
<TrimmableAssembly Include="Avalonia.Themes.Default" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Avalonia" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.Desktop" Version="11.0.5" /> | ||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.5" /> | ||
<PackageReference Include="Splat.DependencyInjection.SourceGenerator" Version="1.1.93"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\NetStalkerAvalonia.Core\NetStalkerAvalonia.Core.csproj" /> | ||
</ItemGroup> | ||
</Project> |
105 changes: 53 additions & 52 deletions
105
NetStalkerAvalonia.Windows/NetStalkerAvalonia.Windows.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,55 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net7.0-windows10.0.17763.0</TargetFramework> | ||
<RuntimeIdentifiers>win10-x86</RuntimeIdentifiers> | ||
<Nullable>enable</Nullable> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NoWarn>CA1416</NoWarn> | ||
<NoWarn>IO0006</NoWarn> | ||
<Version>1.0.0</Version> | ||
<FileVersion>1.0.0</FileVersion> | ||
<AssemblyVersion>1.0.0</AssemblyVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Title>NetStalker</Title> | ||
<ProductName>NetStalker</ProductName> | ||
<Description>A network tool to control the bandwidth over your local network, it can block internet access form any selected device, or limit its speed using packet redirection, in addition, it can log web activity for the targeted device using a built in packet sniffer.</Description> | ||
<Authors>Hamzi Alsheikh</Authors> | ||
<Copyright>Copyright © Hamzi Alsheikh 2023</Copyright> | ||
<PackageProjectUrl>https://github.com/hmz777/NetStalker.Avalonia</PackageProjectUrl> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/hmz777/NetStalker.Avalonia</RepositoryUrl> | ||
<Product>NetStalker</Product> | ||
<AssemblyName>NetStalker</AssemblyName> | ||
<ApplicationIcon>netstalker-logo.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Content Include="netstalker-logo.ico" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<TrimmerRootDescriptor Include="Roots.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<TrimmableAssembly Include="Avalonia.Themes.Fluent" /> | ||
<TrimmableAssembly Include="Avalonia.Themes.Default" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Avalonia" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.Desktop" Version="11.0.0" /> | ||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0" /> | ||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0" /> | ||
<PackageReference Include="Splat.DependencyInjection.SourceGenerator" Version="1.1.93"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\NetStalkerAvalonia.Core\NetStalkerAvalonia.Core.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net7.0-windows10.0.17763.0</TargetFramework> | ||
<RuntimeIdentifiers>win10-x86</RuntimeIdentifiers> | ||
<Nullable>enable</Nullable> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> | ||
<AssemblyVersion>2.0.0.0</AssemblyVersion> | ||
<FileVersion>2.0.0.0</FileVersion> | ||
<InformationalVersion>2.0.0+7.Branch.master.Sha.707261789d8bdc69a7097b2fe2daa13ebcabe331</InformationalVersion> | ||
<Version>2.0.0</Version> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<NoWarn>CA1416</NoWarn> | ||
<NoWarn>IO0006</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Title>NetStalker</Title> | ||
<ProductName>NetStalker</ProductName> | ||
<Description>A network tool to control the bandwidth over your local network, it can block internet access form any selected device, or limit its speed using packet redirection, in addition, it can log web activity for the targeted device using a built in packet sniffer.</Description> | ||
<Authors>Hamzi Alsheikh</Authors> | ||
<Copyright>Copyright © Hamzi Alsheikh 2023</Copyright> | ||
<PackageProjectUrl>https://github.com/hmz777/NetStalker.Avalonia</PackageProjectUrl> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/hmz777/NetStalker.Avalonia</RepositoryUrl> | ||
<Product>NetStalker</Product> | ||
<AssemblyName>NetStalker</AssemblyName> | ||
<ApplicationIcon>netstalker-logo.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Content Include="netstalker-logo.ico" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<TrimmerRootDescriptor Include="Roots.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<TrimmableAssembly Include="Avalonia.Themes.Fluent" /> | ||
<TrimmableAssembly Include="Avalonia.Themes.Default" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Avalonia" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.Desktop" Version="11.0.5" /> | ||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.5" /> | ||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.5" /> | ||
<PackageReference Include="Splat.DependencyInjection.SourceGenerator" Version="1.1.93"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\NetStalkerAvalonia.Core\NetStalkerAvalonia.Core.csproj" /> | ||
</ItemGroup> | ||
</Project> |