Skip to content

Commit

Permalink
Created release folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielm-infocorp committed Jul 6, 2014
1 parent 04a5cc8 commit f6aefed
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,6 @@ $RECYCLE.BIN/

# Unnecessary files created by Visual Studio's Add Service Reference, which have a long name and together with the path can be too long for Windows to handle
**/Service References/*/*.datasource

# Don't ignore release folder
!/release/
Binary file added release/DotRas.dll
Binary file not shown.
Binary file added release/Microsoft.Win32.TaskScheduler.dll
Binary file not shown.
Binary file added release/NetworkHelper.exe
Binary file not shown.
33 changes: 33 additions & 0 deletions release/NetworkHelper.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>

<appSettings>
<!-- Can set a relative or absolute path -->
<add key="ConfigurationFilePath" value="NetworkHelperConfiguration.xml" />
</appSettings>

<log4net>
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<file value="NetworkHelperLog.txt" />
<appendToFile value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date %level %message%newline" />
</layout>
</appender>

<appender name="EventAppender" type="NetworkHelper.Utilities.Logger+EventAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date{HH:mm:ss} %message" />
</layout>
</appender>

<root>
<level value="ALL" />
<appender-ref ref="FileAppender" />
<appender-ref ref="EventAppender" />
</root>
</log4net>
</configuration>
Binary file added release/NetworkHelper.pdb
Binary file not shown.
20 changes: 20 additions & 0 deletions release/NetworkHelperConfiguration.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Vpns>
<Vpn>
<Name>My VPN name</Name>
<DnsSuffix>some.suffix.com</DnsSuffix>
<Routes>
<Route>
<Description>A database server</Description>
<DestinationIpAddress>192.168.44.33</DestinationIpAddress>
</Route>
<Route>
<Description>A range of workstations</Description>
<DestinationIpAddress>192.168.45.0</DestinationIpAddress>
<Mask>255.255.255.0</Mask>
</Route>
</Routes>
</Vpn>
</Vpns>
</Configuration>
Binary file added release/log4net.dll
Binary file not shown.

0 comments on commit f6aefed

Please sign in to comment.