Skip to content

Commit 6c75bc4

Browse files
committed
new release
1 parent 3ff1189 commit 6c75bc4

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

WindowsFirewallHelper/COMTypeResolver.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,18 @@ public class COMTypeResolver
1414
/// </summary>
1515
public string MachineName { get; }
1616

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

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

WindowsFirewallHelper/FirewallProduct.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ public string Name
7575
set => UnderlyingObject.DisplayName = value;
7676
}
7777

78+
/// <summary>
79+
/// Gets the active COM+ Object resolver instance
80+
/// </summary>
7881
public COMTypeResolver TypeResolver { get; }
7982

8083
/// <summary>

WindowsFirewallHelper/WindowsFirewallHelper.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,15 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2;net4</TargetFrameworks>
55
<PackageId>WindowsFirewallHelper</PackageId>
6-
<Version>2.0.4.70-beta2</Version>
6+
<Version>2.1.4.81</Version>
77
<Authors>Soroush Falahati</Authors>
88
<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>
99
<PackageLicenseUrl>https://github.com/falahati/WindowsFirewallHelper/blob/master/LICENSE</PackageLicenseUrl>
1010
<PackageProjectUrl>https://github.com/falahati/WindowsFirewallHelper</PackageProjectUrl>
1111
<PackageIconUrl>https://github.com/falahati/WindowsFirewallHelper/blob/master/WindowsFirewallHelper/Icon.png?raw=true</PackageIconUrl>
1212
<RepositoryUrl>https://github.com/falahati/WindowsFirewallHelper</RepositoryUrl>
13-
<IncludeSymbols>true</IncludeSymbols>
14-
<IncludeSource>true</IncludeSource>
1513
<NeutralLanguage>en-US</NeutralLanguage>
16-
<Copyright>Copyright (c) 2019 Soroush Falahati</Copyright>
14+
<Copyright>Copyright (c) 2021 Soroush Falahati</Copyright>
1715
<PlatformTarget>AnyCPU</PlatformTarget>
1816
<Title>Windows Firewall Helper (Win XP+)</Title>
1917
<AssemblyOriginatorKeyFile>OpenSourceStrongNameSignKey.pfx</AssemblyOriginatorKeyFile>
@@ -52,6 +50,9 @@
5250
<BumpRevision>True</BumpRevision>
5351
<BumpResetLabel>dev</BumpResetLabel>
5452
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
53+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
54+
<EmbedAllSources>True</EmbedAllSources>
55+
<DebugType>embedded</DebugType>
5556
<OutputPath>..\Release</OutputPath>
5657
<DocumentationFile>..\Release\WindowsFirewallHelper.xml</DocumentationFile>
5758
<SignAssembly>true</SignAssembly>

0 commit comments

Comments
 (0)