Skip to content

Commit

Permalink
Renamed everything to Paket
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Aug 8, 2014
1 parent 9d69ea6 commit 04cc1db
Show file tree
Hide file tree
Showing 17 changed files with 58 additions and 247 deletions.
8 changes: 4 additions & 4 deletions FSharp.ProjectScaffold.sln → Paket.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
Expand All @@ -12,12 +12,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{1F1B4F
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{A6A6AF7D-D6E3-442D-9B1E-58CC91879BE1}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.ProjectTemplate", "src\FSharp.ProjectTemplate\FSharp.ProjectTemplate.fsproj", "{7E90D6CE-A10B-4858-A5BC-41DF7250CBCA}"
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Paket", "src\Paket\Paket.fsproj", "{7E90D6CE-A10B-4858-A5BC-41DF7250CBCA}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60BC93-E09B-4E5F-9D85-95A519479D54}"
ProjectSection(SolutionItems) = preProject
build.fsx = build.fsx
nuget\FSharp.ProjectTemplate.nuspec = nuget\FSharp.ProjectTemplate.nuspec
nuget\Paket.nuspec = nuget\Paket.nuspec
README.md = README.md
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
Expand All @@ -36,7 +36,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "content", "content", "{8E6D
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{ED8079DD-2B06-4030-9F0F-DC548F98E1C4}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.ProjectTemplate.Tests", "tests\FSharp.ProjectTemplate.Tests\FSharp.ProjectTemplate.Tests.fsproj", "{E789C72A-5CFD-436B-8EF1-61AA2852A89F}"
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Paket.Tests", "tests\Paket.Tests\Paket.Tests.fsproj", "{E789C72A-5CFD-436B-8EF1-61AA2852A89F}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "ManualTest", "tests\ManualTest\ManualTest.fsproj", "{0252F0B5-B106-42F5-ABA8-743A1AAE8A6E}"
EndProject
Expand Down
18 changes: 9 additions & 9 deletions build.template → build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,37 +28,37 @@ open SourceLink

// The name of the project
// (used by attributes in AssemblyInfo, name of a NuGet package and directory in 'src')
let project = "##ProjectName##"
let project = "Paket"

// Short summary of the project
// (used as description in AssemblyInfo and as a short summary for NuGet package)
let summary = "##Summary##"
let summary = "A dependency manager for .NET"

// Longer description of the project
// (used as a description for NuGet package; line breaks are automatically cleaned up)
let description = "##Description##"
let description = "A dependency manager for .NET"

// List of author names (for NuGet package)
let authors = [ "##Author##" ]
let authors = [ "Steffen Forkmann, Alexander Gross" ]

// Tags for your project (for NuGet package)
let tags = "##Tags##"
let tags = "nuget, bunlder, F#"

// File system information
let solutionFile = "##ProjectName##.sln"
let solutionFile = "Paket.sln"

// Pattern specifying assemblies to be tested using NUnit
let testAssemblies = "tests/**/bin/Release/*Tests*.dll"

// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitHome = "https://github.com/##GitHome##"
let gitHome = "https://github.com/fsprojects"

// The name of the project on GitHub
let gitName = "##GitName##"
let gitName = "Paket"

// The url for the raw files hosted
let gitRaw = environVarOrDefault "gitRaw" "https://raw.github.com/##GitHome##"
let gitRaw = environVarOrDefault "gitRaw" "https://raw.github.com/fsprojects"

// --------------------------------------------------------------------------------------
// END TODO: The rest of the file includes standard build steps
Expand Down
17 changes: 0 additions & 17 deletions docs/output/README.md

This file was deleted.

16 changes: 8 additions & 8 deletions docs/tools/generate.template → docs/tools/generate.fsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
// --------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------
// Builds the documentation from `.fsx` and `.md` files in the 'docs/content' directory
// (the generated documentation is stored in the 'docs/output' directory)
// --------------------------------------------------------------------------------------

// Binaries that have XML documentation (in a corresponding generated XML file)
let referenceBinaries = [ "##ProjectName##.dll" ]
let referenceBinaries = [ "Paket.dll" ]
// Web site location for the generated documentation
let website = "/##ProjectName##"
let website = "/Paket"

let githubLink = "http://github.com/##GitHome##/##GitName##"
let githubLink = "http://github.com/fsprojects/Paket"

// Specify more information about your project
let info =
[ "project-name", "##ProjectName##"
"project-author", "##Author##"
"project-summary", "##Summary##"
[ "project-name", "Paket"
"project-author", "Steffen Forkmann, Alexander Gross"
"project-summary", "A dependency manager for .NET"
"project-github", githubLink
"project-nuget", "http://nuget.com/packages/##ProjectName##" ]
"project-nuget", "http://nuget.com/packages/Paket" ]

// --------------------------------------------------------------------------------------
// For typical project, no changes are needed below
Expand Down
172 changes: 0 additions & 172 deletions init.fsx

This file was deleted.

10 changes: 5 additions & 5 deletions nuget/FSharp.ProjectTemplate.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<version>@build.number@</version>
<authors>@authors@</authors>
<owners>@authors@</owners>
<licenseUrl>http://github.com/fsprojects/FSharp.ProjectScaffold/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>http://fsprojects.github.com/FSharp.ProjectScaffold</projectUrl>
<iconUrl>https://raw.github.com/fsharp/FSharp.ProjectScaffold/master/nuget/logo.png</iconUrl>
<licenseUrl>http://github.com/fsprojects/Paket/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>http://fsprojects.github.com/Paket</projectUrl>
<iconUrl>https://raw.github.com/fsharp/Paket/master/nuget/logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>@summary@</summary>
<description>@description@</description>
Expand All @@ -17,7 +17,7 @@
<dependencies />
</metadata>
<files>
<file src="..\bin\FSharp.ProjectTemplate.dll" target="lib/net40" />
<file src="..\bin\FSharp.ProjectTemplate.pdb" target="lib/net40" />
<file src="..\bin\Paket.dll" target="lib/net40" />
<file src="..\bin\Paket.pdb" target="lib/net40" />
</files>
</package>
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace System
open System.Reflection

[<assembly: AssemblyTitleAttribute("FSharp.ProjectTemplate")>]
[<assembly: AssemblyProductAttribute("FSharp.ProjectTemplate")>]
[<assembly: AssemblyDescriptionAttribute("A short summary of your project.")>]
[<assembly: AssemblyTitleAttribute("Paket")>]
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET")>]
[<assembly: AssemblyVersionAttribute("1.0")>]
[<assembly: AssemblyFileVersionAttribute("1.0")>]
do ()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharp.ProjectTemplate.ConfigDSL
module Paket.ConfigDSL

open System
open System.IO
Expand Down Expand Up @@ -59,4 +59,4 @@ let merge (config1:Config) (config2:Config) =
config2
|> Seq.fold (fun m x -> Map.add x.Key x.Value m) config1

let (==>) c1 c2 = merge c1 c2
let (==>) c1 c2 = merge c1 c2
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="4.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 All @@ -7,11 +7,11 @@
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>7e90d6ce-a10b-4858-a5bc-41df7250cbca</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>FSharp.ProjectTemplate</RootNamespace>
<AssemblyName>FSharp.ProjectTemplate</AssemblyName>
<RootNamespace>Paket</RootNamespace>
<AssemblyName>Paket</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
<Name>FSharp.ProjectTemplate</Name>
<Name>Paket</Name>
<TargetFrameworkProfile />
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
<RestorePackages>true</RestorePackages>
Expand All @@ -24,7 +24,7 @@
<OutputPath>..\..\bin</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<DocumentationFile>..\..\bin\FSharp.ProjectTemplate.xml</DocumentationFile>
<DocumentationFile>..\..\bin\Paket.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -33,7 +33,7 @@
<OutputPath>..\..\bin</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<DocumentationFile>..\..\bin\FSharp.ProjectTemplate.xml</DocumentationFile>
<DocumentationFile>..\..\bin\Paket.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
Expand Down Expand Up @@ -82,4 +82,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>
File renamed without changes.
Loading

0 comments on commit 04cc1db

Please sign in to comment.