Skip to content

Commit

Permalink
Merge pull request #1 from fearthecowboy/master
Browse files Browse the repository at this point in the history
Bazinga.
  • Loading branch information
wwahammy committed Apr 6, 2012
2 parents 57ca37d + 4fc2411 commit 10196a7
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 16 deletions.
14 changes: 3 additions & 11 deletions COPKG/.buildinfo
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,9 @@ sign-binaries {

build-command: @"
REM sign files in release directory
xcopy /Q /D /Y /I /S ""Libraries"" ""out""
simplesigner --sign ""out\**.dll""


REM Everything went ok!
exit /b 0

REM Something not ok :(
:failed
echo ERROR: Failure in script. aborting.
exit /b 1
rmdir /s /q out
xcopy /Q /D /Y /I /S ""Libraries"" ""out""
simplesigner --just-sign ""out\**.dll""
";
}

Expand Down
27 changes: 22 additions & 5 deletions COPKG/blend.autopkg
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
// autopackage file for coapp.devtools
@import "outercurve.inc";

package {
name: "Blend SDK";
name: "Microsoft.Blend.SDK";
display-name: "Blend SDK";
location: "http://coapp.org/repository/${OutputFilename}";
feed: "http://coapp.org/repository/packages.atom.xml";
publisher: "CoApp Project";
// version : "4.0.0.0";
//architecture: "any";
}

metadata {

summary: "Blend SDK";
description:@"Microsoft Expression Blend 4 includes new built-in behaviors, which are reusable pieces of packaged code that can be dragged onto any object, and then fine-tuned by changing their properties.

summary: "Common Locations Service";
author-version : "4";
Behaviors allow you to add interactivity to your applications without having to write any code. The Behavior API consists of three core classes: Trigger, Action, and Behavior.";
author-version : "v4";
}

files[dlls] {
Expand All @@ -22,6 +28,17 @@ files[dlls] {
trim-path: minimal;
}

files[reference] {
root: "..\out";
include: {
"*.xml",
"*.dll",
"Design\*.xml",
"Design\*.dll",
};
trim-path: minimal;
}

assemblies {
include : {
dlls
Expand All @@ -32,7 +49,7 @@ assemblies {
developer-library[dlls] {
reference-assemblies:
{
dlls
reference
};

}
Expand Down
23 changes: 23 additions & 0 deletions COPKG/outercurve.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// autopackage

package {
location: "http://coapp.org/repository/${OutputFilename}";
feed: "http://coapp.org/repository/packages.atom.xml";
publisher: "CoApp Project";
}


/*
metadata {
licenses : {
Proprietary
};
}
*/

identity[CoApp Project] {
name : "CoApp Project, Outercurve Foundation";
email: "coapp@coapp.org";
website: "http://coapp.org";
}

0 comments on commit 10196a7

Please sign in to comment.