forked from xkjyeah/openvpnserv2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AssemblyInfo.cs with assembly metadata
This commit adds assembly metadata such as product version (now 1.3.0.0). This information will be shown in File -> Properties dialog in Windows Explorer. Signed-off-by: Samuli Seppänen <[email protected]>
- Loading branch information
Showing
3 changed files
with
20 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
|
||
[assembly: AssemblyTitle("Openvpnserv2")] | ||
[assembly: AssemblyDescription("Windows service for running OpenVPN connections in the background")] | ||
[assembly: AssemblyProduct("Openvpnserv2")] | ||
[assembly: AssemblyVersion("1.3.0.0")] | ||
[assembly: AssemblyFileVersion("1.3.0.0")] | ||
[assembly: AssemblyInformationalVersion("1.3.0.0")] | ||
[assembly: AssemblyCompany("The OpenVPN project")] | ||
[assembly: AssemblyCopyright("Copyright © OpenVPN project 2016")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] |
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