Skip to content

Commit

Permalink
Exposed internal AddFunction method to allow users to create their ow…
Browse files Browse the repository at this point in the history
…n functions. Bumped nuget version
  • Loading branch information
Gareth Williams committed Jun 18, 2016
1 parent 19a5fc3 commit 3b1c1d8
Show file tree
Hide file tree
Showing 13 changed files with 814 additions and 487 deletions.
8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

177 changes: 177 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/bin/Debug/<path-to-program>",
"args": [],
"cwd": "${workspaceRoot}",
"stopAtEntry": false
},
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/bin/Debug/<path-to-program>",
"args": [],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processName": "<example>"
}
]
}
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.DS_Store": true,
"**/.nuget": true,
"**/bin": true,
"**/obj": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.nuget": true,
"**/bin": true,
"**/obj": true
}
}
21 changes: 21 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true"
],
"taskSelector": "/t:",
"showOutput": "silent",
"tasks": [
{
"taskName": "build",
// Show the output window only if unrecognized errors occur.
"showOutput": "silent",
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
}
]
}
6 changes: 6 additions & 0 deletions Blitline.Net.sln.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="RIDER_MODULE" version="4">
<component name="NewModuleRootManager">
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
25 changes: 20 additions & 5 deletions Blitline.Net.userprefs
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
<Properties StartupItem="TestApp/TestApp.csproj">
<MonoDevelop.Ide.Workbench ActiveDocument="Specs/Unit/Builders/RequestBuilderSpecs.cs">
<MonoDevelop.Ide.Workbench ActiveDocument="Blitline.Net/Builders/Builder.cs">
<Files>
<File FileName="Blitline.Net/Request/BlitlineRequest.cs" Line="28" Column="36" />
<File FileName="Blitline.Net/Request/Builders/RequestBuilder.cs" Line="98" Column="10" />
<File FileName="Specs/Unit/Builders/RequestBuilderSpecs.cs" Line="37" Column="1" />
<File FileName="TestApp/Program.cs" Line="48" Column="56" />
<File FileName="Blitline.Net/Builders/Builder.cs" Line="22" Column="3" />
</Files>
<Pads>
<Pad Id="ProjectPad">
<State name="__root__">
<Node name="Blitline.Net" expanded="True">
<Node name="Blitline.Net" expanded="True">
<Node name="Builders" expanded="True">
<Node name="Builder.cs" selected="True" />
</Node>
<Node name="Functions" expanded="True" />
<Node name="Response" expanded="True" />
</Node>
<Node name="TestApp" expanded="True" />
</Node>
</State>
</Pad>
</Pads>
</MonoDevelop.Ide.Workbench>
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
<MonoDevelop.Ide.DebuggingService.Breakpoints>
<BreakpointStore>
<Breakpoint file="/Users/garethwilliams/Development/net/Blitline.Net/Blitline.Net/BlitlineApi.cs" line="45" column="1" />
<Breakpoint file="/Users/garethwilliams/Development/net/Blitline.Net/TestApp/Program.cs" line="22" column="1" />
<Breakpoint file="/Users/garethwilliams/Development/net/Blitline.Net/TestApp/Program.cs" line="52" column="1" />
</BreakpointStore>
</MonoDevelop.Ide.DebuggingService.Breakpoints>
<MonoDevelop.Ide.DebuggingService.PinnedWatches />
Expand Down
4 changes: 2 additions & 2 deletions Blitline.Net/Blitline.Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Blitline.Net</id>
<version>0.6.5</version>
<version>0.6.6</version>
<authors>Gareth Williams</authors>
<owners>GDoubleU Ltd</owners>
<projectUrl>https://github.com/gdoubleultd/Blitline.Net</projectUrl>
Expand All @@ -14,7 +14,7 @@
<dependency id="Newtonsoft.Json" version="6.0.6" />
</dependencies>
<description>A .Net wrapper for the Blitline Image Processing API</description>
<releaseNotes>Added azure_url to the Image response</releaseNotes>
<releaseNotes>You can now supply a version to the Blitline API. Exposed the internal AddFunction method to allow users to add functions that might not be implemented already.</releaseNotes>
<tags>Blitline</tags>
</metadata>
</package>
Loading

0 comments on commit 3b1c1d8

Please sign in to comment.