From 577b154cdb64668f0007a340dc9429e43cf69eab Mon Sep 17 00:00:00 2001 From: Haacked Date: Mon, 30 Jun 2014 10:48:49 -0700 Subject: [PATCH] Fix path to SolutionInfo.cs --- SolutionInfo.cs | 6 +++--- build.fsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 186c3cb8..a697e160 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.3.4")] -[assembly: AssemblyFileVersionAttribute("0.3.4")] +[assembly: AssemblyVersionAttribute("0.3.5")] +[assembly: AssemblyFileVersionAttribute("0.3.5")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.3.4"; + internal const string Version = "0.3.5"; } } diff --git a/build.fsx b/build.fsx index 7b914e33..416cb336 100644 --- a/build.fsx +++ b/build.fsx @@ -34,7 +34,7 @@ Target "Clean" (fun _ -> open Fake.AssemblyInfoFile Target "AssemblyInfo" (fun _ -> - CreateCSharpAssemblyInfo "SolutionInfo.cs" + CreateCSharpAssemblyInfo "./SolutionInfo.cs" [ Attribute.Product projectName Attribute.Version releaseNotes.AssemblyVersion Attribute.FileVersion releaseNotes.AssemblyVersion