diff --git a/NuGet/CSharpAnalytics.nuspec b/NuGet/CSharpAnalytics.nuspec
index e2b1dc0..7b1013a 100644
--- a/NuGet/CSharpAnalytics.nuspec
+++ b/NuGet/CSharpAnalytics.nuspec
@@ -1,26 +1,22 @@
- CSharpAnalytics
- 1.2.1
+ Sonova.CSharpAnalytics
+ 1.3.0
Damien Guard
Attack Pattern
- https://raw.github.com/AttackPattern/CSharpAnalytics/master/Source/LICENCE.txt
- https://github.com/AttackPattern/CSharpAnalytics
+ https://raw.githubusercontent.com/sonova/CSharpAnalytics/master/Source/LICENCE.txt
+ https://github.com/sonova/CSharpAnalytics
false
Google Analytics client for C# applications with automatic wire-up for Windows 8/8.1 store applications.
- Stop some phantom sessions by not sending queue time (qt) with session control (sc)
-Detect Windows OS version in store apps even on machines with a custom HAL
-Save session id and session number at startup to avoid loss should the app crash
-Custom metrics and dimensions can now be set on a specific activity (recommended)
+
+ 1st Sonova release based on CSharpAnalytics 1.2.1
+ Fix for issue #47 - session start and session end time stamps registered at GA are very often too late relative to other events
Copyright 2012-2015 Attack Pattern LLC
google analytics, metrics, analytics, ga, measurement protocol
-
-
-
\ No newline at end of file
diff --git a/NuGet/package.bat b/NuGet/package.bat
new file mode 100644
index 0000000..1fa1424
--- /dev/null
+++ b/NuGet/package.bat
@@ -0,0 +1 @@
+nuget pack CSharpAnalytics.nuspec
\ No newline at end of file
diff --git a/Source/CSharpAnalytics.Tests/Properties/AssemblyInfo.cs b/Source/CSharpAnalytics.Tests/Properties/AssemblyInfo.cs
index 4615e18..b2ccfb7 100644
--- a/Source/CSharpAnalytics.Tests/Properties/AssemblyInfo.cs
+++ b/Source/CSharpAnalytics.Tests/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
[assembly: AssemblyProduct("CSharpAnalytics")]
[assembly: AssemblyCopyright("Copyright © 2012-2014 Attack Pattern LLC.")]
-[assembly: AssemblyVersion("1.2.0.0")]
-[assembly: AssemblyFileVersion("1.2.0.0")]
+[assembly: AssemblyVersion("1.3.0.0")]
+[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyDescriptionAttribute("Unit tests for CSharpAnalytics")]
[assembly: NeutralResourcesLanguageAttribute("")]
\ No newline at end of file
diff --git a/Source/CSharpAnalytics/AutoMeasurement/BaseAutoMeasurement.cs b/Source/CSharpAnalytics/AutoMeasurement/BaseAutoMeasurement.cs
index ea0aa7e..47153e3 100644
--- a/Source/CSharpAnalytics/AutoMeasurement/BaseAutoMeasurement.cs
+++ b/Source/CSharpAnalytics/AutoMeasurement/BaseAutoMeasurement.cs
@@ -57,7 +57,7 @@ public abstract class BaseAutoMeasurement
/// Configuration to use, must at a minimum specify your Google Analytics ID and app name.
/// Kind of launch this application experienced.
/// How often to upload to the server. Lower times = more traffic but realtime. Defaults to 5 seconds.
- /// var analyticsTask = AutoMeasurement.StartAsync(new MeasurementConfiguration("UA-123123123-1", "MyApp", "1.2.0.0"));
+ /// var analyticsTask = AutoMeasurement.StartAsync(new MeasurementConfiguration("UA-123123123-1", "MyApp", "1.3.0.0"));
public async void Start(MeasurementConfiguration configuration, string launchKind, TimeSpan? uploadInterval = null)
{
if (!isStarted)
diff --git a/Source/CSharpAnalytics/Properties/AssemblyInfo.cs b/Source/CSharpAnalytics/Properties/AssemblyInfo.cs
index d6b2b08..392bba5 100644
--- a/Source/CSharpAnalytics/Properties/AssemblyInfo.cs
+++ b/Source/CSharpAnalytics/Properties/AssemblyInfo.cs
@@ -8,8 +8,8 @@
[assembly: AssemblyProduct("CSharpAnalytics")]
[assembly: AssemblyCopyright("Copyright © 2012-2014 Attack Pattern LLC.")]
-[assembly: AssemblyVersion("1.2.0.0")]
-[assembly: AssemblyFileVersion("1.2.0.0")]
+[assembly: AssemblyVersion("1.3.0.0")]
+[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: ComVisible(false)]
[assembly: InternalsVisibleTo("CSharpAnalytics.Test.Net45")]
diff --git a/Source/Samples/CSharpAnalytics.Sample.WinForms/Properties/AssemblyInfo.cs b/Source/Samples/CSharpAnalytics.Sample.WinForms/Properties/AssemblyInfo.cs
index a289650..610d9c4 100644
--- a/Source/Samples/CSharpAnalytics.Sample.WinForms/Properties/AssemblyInfo.cs
+++ b/Source/Samples/CSharpAnalytics.Sample.WinForms/Properties/AssemblyInfo.cs
@@ -7,6 +7,6 @@
[assembly: AssemblyProduct("CSharpAnalytics")]
[assembly: AssemblyCopyright("Copyright © 2012-2014 Attack Pattern LLC.")]
-[assembly: AssemblyVersion("1.2.0.0")]
-[assembly: AssemblyFileVersion("1.2.0.0")]
+[assembly: AssemblyVersion("1.3.0.0")]
+[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: ComVisible(false)]
\ No newline at end of file