Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
falahati committed Aug 4, 2021
1 parent 3ff1189 commit 6c75bc4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions WindowsFirewallHelper/COMTypeResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@ public class COMTypeResolver
/// </summary>
public string MachineName { get; }

/// <summary>
/// Creates a new instance of <see cref="COMTypeResolver"/> allowing COM+ connection to remote machines
/// </summary>
/// <param name="machineName">The remote machine name or IP address</param>
public COMTypeResolver(string machineName)
{
MachineName = machineName;
}

/// <summary>
/// Creates a new instance of <see cref="COMTypeResolver"/> providing COM+ connection to local machine
/// </summary>
public COMTypeResolver() : this(null)
{

Expand Down
3 changes: 3 additions & 0 deletions WindowsFirewallHelper/FirewallProduct.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ public string Name
set => UnderlyingObject.DisplayName = value;
}

/// <summary>
/// Gets the active COM+ Object resolver instance
/// </summary>
public COMTypeResolver TypeResolver { get; }

/// <summary>
Expand Down
9 changes: 5 additions & 4 deletions WindowsFirewallHelper/WindowsFirewallHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@
<PropertyGroup>
<TargetFrameworks>netstandard2;net4</TargetFrameworks>
<PackageId>WindowsFirewallHelper</PackageId>
<Version>2.0.4.70-beta2</Version>
<Version>2.1.4.81</Version>
<Authors>Soroush Falahati</Authors>
<Description>A class library to manage the Windows Firewall as well as adding your program to the Windows Firewall Exception list. Supporting Windows XP+.</Description>
<PackageLicenseUrl>https://github.com/falahati/WindowsFirewallHelper/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/falahati/WindowsFirewallHelper</PackageProjectUrl>
<PackageIconUrl>https://github.com/falahati/WindowsFirewallHelper/blob/master/WindowsFirewallHelper/Icon.png?raw=true</PackageIconUrl>
<RepositoryUrl>https://github.com/falahati/WindowsFirewallHelper</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<NeutralLanguage>en-US</NeutralLanguage>
<Copyright>Copyright (c) 2019 Soroush Falahati</Copyright>
<Copyright>Copyright (c) 2021 Soroush Falahati</Copyright>
<PlatformTarget>AnyCPU</PlatformTarget>
<Title>Windows Firewall Helper (Win XP+)</Title>
<AssemblyOriginatorKeyFile>OpenSourceStrongNameSignKey.pfx</AssemblyOriginatorKeyFile>
Expand Down Expand Up @@ -52,6 +50,9 @@
<BumpRevision>True</BumpRevision>
<BumpResetLabel>dev</BumpResetLabel>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<EmbedAllSources>True</EmbedAllSources>
<DebugType>embedded</DebugType>
<OutputPath>..\Release</OutputPath>
<DocumentationFile>..\Release\WindowsFirewallHelper.xml</DocumentationFile>
<SignAssembly>true</SignAssembly>
Expand Down

0 comments on commit 6c75bc4

Please sign in to comment.