From cce9c960261058727b5b46ac3e65ceb2dfca068a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enner=20P=C3=A9rez?= Date: Tue, 26 Apr 2016 01:43:00 -0430 Subject: [PATCH 1/2] Changelog updated --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 427c62d..1f14e9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Build bug +### Added +- Windows Forms Extensions + ## [1.0.12] - 2016-04-22 ### Changed - FontAwesome 4.6.1 From c84480690b0342f69874f4e974829cda7cb31782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enner=20P=C3=A9rez?= Date: Sat, 28 May 2016 23:08:27 -0400 Subject: [PATCH 2/2] Solution Standards --- .gitignore | 4 +- .nuget/NuGet.config | 6 +++ .nuget/NuGet.targets | 47 +++++++++++++++------ CHANGELOG.md | 12 ++++-- Pictograms.Forms/Extensions.cs | 12 +++--- Pictograms.Forms/Package.nuspec | 2 +- Pictograms.Forms/Pictograms.Forms.csproj | 4 +- Pictograms.Forms/Properties/AssemblyInfo.cs | 35 ++++----------- Pictograms/Package.nuspec | 2 +- Pictograms/Pictogram.cs | 7 +++ Pictograms/Pictograms.csproj | 14 ++---- Pictograms/Pictograms/FontAwesome.cs | 8 ++-- Pictograms/Pictograms/Foundation.cs | 8 ++-- Pictograms/Pictograms/LinearIcons.cs | 8 ++-- Pictograms/Pictograms/MaterialDesign.cs | 8 ++-- Pictograms/Properties/AssemblyInfo.cs | 41 +++++------------- Pictograms/Properties/Resources.resx | 8 ++-- README.md | 23 ++++++++-- pictograms.sln | 5 ++- 19 files changed, 137 insertions(+), 117 deletions(-) create mode 100644 .nuget/NuGet.config diff --git a/.gitignore b/.gitignore index 001071c..426ef01 100644 --- a/.gitignore +++ b/.gitignore @@ -153,6 +153,7 @@ publish/ # NuGet v3's project.json files produces more ignoreable files *.nuget.props *.nuget.targets +.nuget/NuGet.exe # Microsoft Azure Build Output csx/ @@ -234,5 +235,4 @@ _Pvt_Extensions # FAKE - F# Make .fake/ - -*.ai \ No newline at end of file +/.editoricon.ai diff --git a/.nuget/NuGet.config b/.nuget/NuGet.config new file mode 100644 index 0000000..38448ac --- /dev/null +++ b/.nuget/NuGet.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.nuget/NuGet.targets b/.nuget/NuGet.targets index 6d2756a..bee3426 100644 --- a/.nuget/NuGet.targets +++ b/.nuget/NuGet.targets @@ -1,4 +1,15 @@ + $(MSBuildProjectDirectory)\..\ @@ -13,7 +24,11 @@ true - false + true + + + + @@ -36,14 +51,21 @@ - $(MSBuildProjectDirectory)\packages.$(MSBuildProjectName.Replace(' ', '_')).config - $(MSBuildProjectDirectory)\packages.$(MSBuildProjectName).config + packages.$(MSBuildProjectName.Replace(' ', '_')).config - - $(MSBuildProjectDirectory)\packages.config - $(PackagesProjectConfig) - + + + + $(PackagesProjectConfig) + + + + + packages.config + + + @@ -51,7 +73,7 @@ @(PackageSource) "$(NuGetExePath)" - mono --runtime=v4.0.30319 "$(NuGetExePath)" + mono --runtime=v4.0.30319 $(NuGetExePath) $(TargetDir.Trim('\\')) @@ -63,7 +85,8 @@ $(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir) - $(NuGetCommand) pack "$(ProjectPath)" -Properties "Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" + -Exclude $(ExcludeFiles) + $(NuGetCommand) pack "$(ProjectPath)" $(ExcludeArgs) -Properties "Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" @@ -78,7 +101,7 @@ - +