Skip to content

Commit

Permalink
Update FAKE.BuildLib 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
veblush committed Apr 5, 2016
1 parent ce8caea commit da9fa0e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 5 additions & 3 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ SET NUGET=.\tools\nuget\NuGet.exe
SET NUGETOPTIONS=-ConfigFile .\tools\nuget\NuGet.Config -OutputDirectory %PACKAGEPATH% -ExcludeVersion

IF NOT EXIST %PACKAGEPATH%FAKE\Ver_4.23.0 (
RD /S/Q %PACKAGEPATH%FAKE
%NUGET% install FAKE -Version 4.23.0 %NUGETOPTIONS%
COPY NUL %PACKAGEPATH%FAKE\Ver_4.23.0
)

IF NOT EXIST %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.5 (
%NUGET% install FAKE.BuildLib -Version 0.1.5 %NUGETOPTIONS%
COPY NUL %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.5
IF NOT EXIST %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.6 (
RD /S/Q %PACKAGEPATH%FAKE.BuildLib
%NUGET% install FAKE.BuildLib -Version 0.1.6 %NUGETOPTIONS%
COPY NUL %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.6
)

set encoding=utf-8
Expand Down
4 changes: 2 additions & 2 deletions core/Action/Properties/AssemblyInfoGenerated.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// <auto-generated/>
using System.Reflection;

[assembly: AssemblyVersionAttribute("1.1.0")]
[assembly: AssemblyVersionAttribute("1.0.0")]
[assembly: AssemblyFileVersionAttribute("1.1.0")]
[assembly: AssemblyInformationalVersionAttribute("1.1.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "1.1.0";
internal const string Version = "1.0.0";
internal const string InformationalVersion = "1.1.0";
}
}
4 changes: 2 additions & 2 deletions core/ConcurrentDictionary/Properties/AssemblyInfoGenerated.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// <auto-generated/>
using System.Reflection;

[assembly: AssemblyVersionAttribute("1.1.0")]
[assembly: AssemblyVersionAttribute("1.0.0")]
[assembly: AssemblyFileVersionAttribute("1.1.0")]
[assembly: AssemblyInformationalVersionAttribute("1.1.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "1.1.0";
internal const string Version = "1.0.0";
internal const string InformationalVersion = "1.1.0";
}
}
4 changes: 2 additions & 2 deletions core/Tuple/Properties/AssemblyInfoGenerated.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// <auto-generated/>
using System.Reflection;

[assembly: AssemblyVersionAttribute("1.1.0")]
[assembly: AssemblyVersionAttribute("1.0.0")]
[assembly: AssemblyFileVersionAttribute("1.1.0")]
[assembly: AssemblyInformationalVersionAttribute("1.1.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "1.1.0";
internal const string Version = "1.0.0";
internal const string InformationalVersion = "1.1.0";
}
}

0 comments on commit da9fa0e

Please sign in to comment.