Skip to content

Commit

Permalink
Add Paket.BootStrapper package - references #790
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Apr 24, 2015
1 parent 476ce40 commit 92df6e0
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 13 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 1.2.0 - 24.04.2015
* Add Paket.BootStrapper NuGet package - https://github.com/fsprojects/Paket/issues/790

#### 1.1.3 - 24.04.2015
* Fix StackOverflowException when using local path - https://github.com/fsprojects/Paket/issues/795

Expand Down
5 changes: 4 additions & 1 deletion src/Paket.Bootstrapper/Paket.Bootstrapper.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
Expand Down Expand Up @@ -46,6 +46,9 @@
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="paket.template" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
8 changes: 4 additions & 4 deletions src/Paket.Bootstrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
[assembly: AssemblyTitleAttribute("Paket.Bootstrapper")]
[assembly: AssemblyProductAttribute("Paket")]
[assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")]
[assembly: AssemblyVersionAttribute("1.1.3")]
[assembly: AssemblyFileVersionAttribute("1.1.3")]
[assembly: AssemblyInformationalVersionAttribute("1.1.3")]
[assembly: AssemblyVersionAttribute("1.2.0")]
[assembly: AssemblyFileVersionAttribute("1.2.0")]
[assembly: AssemblyInformationalVersionAttribute("1.2.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "1.1.3";
internal const string Version = "1.2.0";
}
}
14 changes: 14 additions & 0 deletions src/Paket.Bootstrapper/paket.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
type project
releasenotes
New command: `paket pack` - http://fsprojects.github.io/Paket/paket-pack.html
New command: `paket push` - http://fsprojects.github.io/Paket/paket-push.html
BUGFIX: fix no_auto_restore option parsing - https://github.com/fsprojects/Paket/issues/632
summary
A package dependency manager for .NET with support for NuGet packages and GitHub repositories.
authors
Paket team
licenseurl http://fsprojects.github.io/Paket/license.html
projecturl http://fsprojects.github.com/Paket
iconurl https://raw.githubusercontent.com/fsprojects/Paket/master/docs/files/img/logo.png
tags
nuget, bundler, F#
8 changes: 4 additions & 4 deletions src/Paket.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")>]
[<assembly: AssemblyVersionAttribute("1.1.3")>]
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
[<assembly: AssemblyInformationalVersionAttribute("1.1.3")>]
[<assembly: AssemblyVersionAttribute("1.2.0")>]
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
[<assembly: AssemblyInformationalVersionAttribute("1.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.1.3"
let [<Literal>] Version = "1.2.0"
8 changes: 4 additions & 4 deletions src/Paket/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")>]
[<assembly: AssemblyVersionAttribute("1.1.3")>]
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
[<assembly: AssemblyInformationalVersionAttribute("1.1.3")>]
[<assembly: AssemblyVersionAttribute("1.2.0")>]
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
[<assembly: AssemblyInformationalVersionAttribute("1.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.1.3"
let [<Literal>] Version = "1.2.0"

0 comments on commit 92df6e0

Please sign in to comment.