Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
More projects
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Apr 11, 2018
1 parent 3da1553 commit e69bf4b
Show file tree
Hide file tree
Showing 50 changed files with 271 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[Pp]ackages/
[Tt]ools/*
![Tt]ools/packages.config
[Oo]utput/
[Oo]utput.issues/
[Rr]elease/
[Dd]iagnostic/
nuget.exe
/debug.log
/node_modules/
Expand Down
13 changes: 6 additions & 7 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
// DISCOVERDOTNET_NETLIFY_TOKEN
// DISCOVERDOTNET_MEETUP_TOKEN

#tool nuget:?package=Wyam&version=1.3.0
#addin nuget:?package=Cake.Wyam&version=1.3.0
#tool nuget:?package=Wyam&version=1.4.1
#addin nuget:?package=Cake.Wyam&version=1.4.1
#addin nuget:?package=NetlifySharp&version=0.1.0
#addin nuget:?package=Newtonsoft.Json&version=10.0.3
#addin nuget:?package=System.Runtime.Serialization.Formatters&version=4.3.0

using NetlifySharp;
Expand Down Expand Up @@ -69,7 +68,7 @@ Task("Build")
});
//StartProcess("../Wyam/src/clients/Wyam/bin/Debug/net462/wyam.exe",
// "-a \"../Wyam/src/**/bin/Debug/**/*.dll\""
// "-a \"../Wyam/tests/integration/Wyam.Examples.Tests/bin/Debug/net462/**/*.dll\""
// + $" --config \"config.wyam\""
// + $" --output \"{MakeAbsolute(outputDir).ToString()}\""
// + $" --setting GitHubToken=\"{gitHubToken}\""
Expand All @@ -94,9 +93,9 @@ Task("Issues")
{ "Preview", string.Equals(target, "Preview", StringComparison.OrdinalIgnoreCase ) }
}
});
// StartProcess("../Wyam/src/clients/Wyam/bin/Debug/net462/wyam.exe",
// "-a \"../Wyam/src/**/bin/Debug/**/*.dll\""
// "-a \"../Wyam/tests/integration/Wyam.Examples.Tests/bin/Debug/net462/**/*.dll\""
// + $" --config \"issues.wyam\""
// + $" --output \"{MakeAbsolute(issuesDir).ToString()}\""
// + $" --setting GitHubToken=\"{gitHubToken}\""
Expand Down Expand Up @@ -138,7 +137,7 @@ Task("Preview")
});
// StartProcess("../Wyam/src/clients/Wyam/bin/Debug/net462/wyam.exe",
// "-a \"../Wyam/src/**/bin/Debug/**/*.dll\""
// "-a \"../Wyam/tests/integration/Wyam.Examples.Tests/bin/Debug/net462/**/*.dll\""
// + $" --config \"config.wyam\""
// + $" --output \"{MakeAbsolute(outputDir).ToString()}\""
// + " --noclean -p -w"
Expand Down
7 changes: 4 additions & 3 deletions build.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Param
(
[String]$CakeVersion = "0.23.0",
[String]$CakeVersion = "0.26.1",
[String]$ToolsDir = "$PSScriptRoot\tools",
[String]$ToolsProj = "$ToolsDir\build.csproj",
[String]$BuildFile = "$PSScriptRoot\build.cake",
[String]$Target = 'Default'
[String]$Target = 'Default',
[String]$Verbosity = 'normal'
)

$CAKE_DIR = "$ToolsDir\Cake.CoreCLR.$CakeVersion"
Expand All @@ -29,5 +30,5 @@ if (!(Test-Path $CAKE_DLL))
}
else
{
dotnet "$CAKE_DLL" "$BuildFile" --target="$Target"
dotnet "$CAKE_DLL" "$BuildFile" --target="$Target" --verbosity="$Verbosity"
}
12 changes: 6 additions & 6 deletions config.wyam
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#n Wyam.Yaml -v 1.3.0
#n Wyam.Razor -v 1.3.0
#n Wyam.Markdown -v 1.3.0
#n Wyam.Json -v 1.3.0
#n Wyam.Sass -v 1.3.0
#n Wyam.Minification -v 1.3.0
#n Wyam.Yaml
#n Wyam.Razor
#n Wyam.Markdown
#n Wyam.Json
#n Wyam.Sass
#n Wyam.Minification

#n Octokit -v 0.29.0
#n AngleSharp -v 0.9.9.1
Expand Down
7 changes: 7 additions & 0 deletions input/data/projects/anglesharp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Image: https://raw.githubusercontent.com/AngleSharp/AngleSharp/master/header.png
Language: C#
NuGet: AngleSharp
Source: https://github.com/AngleSharp/AngleSharp
Tags:
- HTML
Website: https://anglesharp.github.io/
5 changes: 5 additions & 0 deletions input/data/projects/avalon-studio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Chat: https://gitter.im/VitalElement/AvalonStudio
Language: C#
Source: https://github.com/VitalElement/AvalonStudio
Tags:
- IDE
6 changes: 6 additions & 0 deletions input/data/projects/chololatey.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Chat: https://gitter.im/chocolatey/choco
Image: https://camo.githubusercontent.com/83a0841e3c0df062a8ef87d864b24a39e3194078/68747470733a2f2f63646e2e7261776769742e636f6d2f63686f636f6c617465792f63686f636f2f313461363237393332633738633862616162613662656635663734396562666131393537643238642f646f63732f6c6f676f2f63686f636f6c6174657969636f6e2e676966
Language: C#
Source: https://github.com/chocolatey/choco
Tags:
- Installation
5 changes: 5 additions & 0 deletions input/data/projects/cpp-sharp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: CppSharp
Source: https://github.com/mono/CppSharp
Tags:
- Interoperability
4 changes: 4 additions & 0 deletions input/data/projects/cxxi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Language: C#
Source: https://github.com/mono/cxxi
Tags:
- Interoperability
7 changes: 7 additions & 0 deletions input/data/projects/dot-imaging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Chat: https://gitter.im/dajuric/dot-imaging
Image: https://raw.githubusercontent.com/dajuric/dot-imaging/master/Deploy/Logo/logo-big.png
Language: C#
NuGet: DotImaging.Primitives2D
Source: https://github.com/dajuric/dot-imaging
Tags:
- Graphics
6 changes: 6 additions & 0 deletions input/data/projects/dotless.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Chat: https://gitter.im/dotless/dotless
Language: C#
NuGet: dotless.Core
Source: https://github.com/dotless/dotless
Tags:
- CSS
5 changes: 5 additions & 0 deletions input/data/projects/dynamic-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: DynamicImage
Source: https://github.com/tgjones/dynamic-image
Tags:
- Graphics
5 changes: 5 additions & 0 deletions input/data/projects/easyhttp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: EasyHttp
Source: https://github.com/EasyHttp/EasyHttp
Tags:
- HTTP
5 changes: 5 additions & 0 deletions input/data/projects/emgu-cv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Image: http://www.emgu.com/wiki/index.php/Main_Page
Language: C#
Source: https://github.com/emgucv/emgucv
Tags:
- Graphics
5 changes: 5 additions & 0 deletions input/data/projects/excss.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: ExCSS
Source: https://github.com/TylerBrinks/ExCSS
Tags:
- CSS
6 changes: 6 additions & 0 deletions input/data/projects/flurl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Language: C#
NuGet: Flurl
Source: https://github.com/tmenier/Flurl
Tags:
- HTTP
Twitter: FlurlHttp
6 changes: 6 additions & 0 deletions input/data/projects/html-agility-pack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Donations: http://www.zzzprojects.com/contribute
Language: C#
NuGet: HtmlAgilityPack
Source: https://github.com/zzzprojects/html-agility-pack
Tags:
- HTML
6 changes: 6 additions & 0 deletions input/data/projects/http-fs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Image: https://raw.githubusercontent.com/relentless/Http.fs/master/docs/files/img/logo_small.png
Language: F#
NuGet: Http.fs
Source: https://github.com/haf/Http.fs
Tags:
- HTTP
5 changes: 5 additions & 0 deletions input/data/projects/httpclientgoodies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: HttpClientGoodies
Source: https://github.com/jeffijoe/httpclientgoodies.net
Tags:
- HTTP
7 changes: 7 additions & 0 deletions input/data/projects/humanizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Chat: https://gitter.im/Humanizr/Humanizer
Image: https://camo.githubusercontent.com/d5d087374d99b03125c5f64ae7af67ab95d79a84/68747470733a2f2f7261772e6769746875622e636f6d2f48756d616e697a722f48756d616e697a65722f6d61737465722f6c6f676f2e706e67
Language: C#
NuGet: Humanizer
Source: https://github.com/Humanizr/Humanizer
Tags:
- Formatting
6 changes: 6 additions & 0 deletions input/data/projects/i18n.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Language: C#
NuGet: i18N
Source: https://github.com/turquoiseowl/i18n
Tags:
- Localization
- ASP.NET
7 changes: 7 additions & 0 deletions input/data/projects/image-processor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Chat: https://gitter.im/JimBobSquarePants/ImageProcessor
Image: https://raw.githubusercontent.com/JimBobSquarePants/ImageProcessor/develop/build/icons/imageprocessor-logo-256.png
Language: C#
NuGet: ImageProcessor
Source: https://github.com/JimBobSquarePants/ImageProcessor
Tags:
- Graphics
5 changes: 5 additions & 0 deletions input/data/projects/image-resizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: ImageResizer
Source: https://github.com/imazen/resizer
Tags:
- Graphics
5 changes: 5 additions & 0 deletions input/data/projects/ionide.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Chat: https://gitter.im/ionide/ionide-project
Language: F#
Source: https://github.com/ionide/ionide-vscode-fsharp
Tags:
- IDE
5 changes: 5 additions & 0 deletions input/data/projects/legacy-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: ' Codefoundry.LegacyWrapper'
Source: https://github.com/CodefoundryDE/LegacyWrapper
Tags:
- Interoperability
6 changes: 6 additions & 0 deletions input/data/projects/libsasshost.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Image: https://raw.githubusercontent.com/Taritsyn/LibSassHost/master/images/LibSassHost_Logo.png
Language: C#
NuGet: LibSassHost
Source: https://github.com/Taritsyn/LibSassHost
Tags:
- CSS
7 changes: 7 additions & 0 deletions input/data/projects/magick-net.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Chat: https://gitter.im/Magick-NET/Lobby
Donations: https://www.paypal.me/DirkLemstra
Language: C#
Source: https://github.com/dlemstra/Magick.NET
Tags:
- Graphics
Twitter: MagickNET
6 changes: 6 additions & 0 deletions input/data/projects/messageformat-net.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Chat: https://gitter.im/jeffijoe/messageformat.net
Language: C#
NuGet: MessageFormat
Source: https://github.com/jeffijoe/MessageFormat.NET
Tags:
- Formatting
6 changes: 6 additions & 0 deletions input/data/projects/metadata-extractor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Image: https://camo.githubusercontent.com/e7cce0b5a2fe32d08b5bd292b84e552635b52ad1/68747470733a2f2f63646e2e7261776769742e636f6d2f647265776e6f616b65732f6d657461646174612d657874726163746f722f6d61737465722f5265736f75726365732f6d657461646174612d657874726163746f722d6c6f676f2e737667
Language: C#
NuGet: MetadataExtractor
Source: https://github.com/drewnoakes/metadata-extractor-dotnet
Tags:
- Graphics
5 changes: 5 additions & 0 deletions input/data/projects/mono-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Chat: https://gitter.im/mono/monodevelop
Language: C#
Source: https://github.com/mono/monodevelop
Tags:
- IDE
5 changes: 5 additions & 0 deletions input/data/projects/opencvsharp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: OpenCvSharp3-AnyCPU
Source: https://github.com/shimat/opencvsharp/
Tags:
- Graphics
5 changes: 5 additions & 0 deletions input/data/projects/pythonnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Chat: https://gitter.im/pythonnet/pythonnet
Language: C#
Source: https://github.com/pythonnet/pythonnet
Tags:
- Interoperability
5 changes: 5 additions & 0 deletions input/data/projects/qrcodecore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: QRCodeCore
Source: https://github.com/dlemstra/QRCodeCore
Tags:
- Graphics
5 changes: 5 additions & 0 deletions input/data/projects/refit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: Refit
Source: https://github.com/paulcbetts/refit
Tags:
- HTTP
6 changes: 6 additions & 0 deletions input/data/projects/restease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Image: https://raw.githubusercontent.com/canton7/RestEase/master/icon.png
Language: C#
NuGet: RestEase
Source: https://github.com/canton7/RestEase
Tags:
- HTTP
5 changes: 5 additions & 0 deletions input/data/projects/restless.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Language: C#
NuGet: RestLess
Source: https://github.com/letsar/RestLess
Tags:
- HTTP
7 changes: 7 additions & 0 deletions input/data/projects/restsharp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Chat: https://gitter.im/RestSharp/RestSharp
Language: C#
NuGet: RestSharp
Source: https://github.com/restsharp/RestSharp
Tags:
- HTTP
Twitter: RestSharp
4 changes: 4 additions & 0 deletions input/data/projects/resx-resource-manager.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Language: C#
Source: https://github.com/tom-englert/ResXResourceManager
Tags:
- Localization
5 changes: 5 additions & 0 deletions input/data/projects/roslynpad.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Image: https://raw.githubusercontent.com/aelij/RoslynPad/master/src/RoslynPad/Resources/RoslynPad.png
Language: C#
Source: https://github.com/aelij/RoslynPad
Tags:
- IDE
4 changes: 4 additions & 0 deletions input/data/projects/sharp-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Language: C#
Source: https://github.com/icsharpcode/SharpDevelop
Tags:
- IDE
4 changes: 4 additions & 0 deletions input/data/projects/sharpen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Language: Java
Source: https://github.com/mono/sharpen
Tags:
- Interoperability
6 changes: 6 additions & 0 deletions input/data/projects/squirrel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Image: https://raw.githubusercontent.com/Squirrel/Squirrel.Windows/master/docs/artwork/Squirrel-Logo.png
Language: C#
NuGet: squirrel.windows
Source: https://github.com/squirrel/squirrel.windows
Tags:
- Installation
4 changes: 4 additions & 0 deletions input/data/projects/wax.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Language: C#
Source: https://github.com/tom-englert/Wax
Tags:
- Installation
4 changes: 4 additions & 0 deletions input/data/projects/wix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Language: C#
Source: https://github.com/wixtoolset/wix4
Tags:
- Installation
6 changes: 6 additions & 0 deletions input/data/resources/avalon-studio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Title: AvalonStudio
Website: https://github.com/VitalElement/AvalonStudio
Description: Cross platform IDE written in C#
Tags:
- Tool
- IDE
6 changes: 6 additions & 0 deletions input/data/resources/ionide.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Title: Ionide
Website: http://ionide.io/
Description: A Visual Studio Code package suite for cross platform F# development
Tags:
- Tool
- IDE
6 changes: 6 additions & 0 deletions input/data/resources/mono-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Title: MonoDevelop
Website: http://www.monodevelop.com/
Description: Cross platform IDE for C#, F# and more
Tags:
- Tool
- IDE
6 changes: 6 additions & 0 deletions input/data/resources/rider.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Title: Rider
Website: https://www.jetbrains.com/rider/
Description: Fast, powerful, cross-platform .NET IDE
Tags:
- Tool
- IDE
7 changes: 7 additions & 0 deletions input/data/resources/roslyn-pad.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Title: RoslynPad
Website: https://github.com/aelij/RoslynPad
Description: A cross-platform C# editor based on Roslyn and AvalonEdit
Image: https://raw.githubusercontent.com/aelij/RoslynPad/master/src/RoslynPad/Resources/RoslynPad.png
Tags:
- Tool
- IDE
6 changes: 6 additions & 0 deletions input/data/resources/sharp-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Title: SharpDevelop
Website: http://www.icsharpcode.net/OpenSource/SD/Default.aspx
Description: A free IDE for .NET programming languages
Tags:
- Tool
- IDE

0 comments on commit e69bf4b

Please sign in to comment.