Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build and packaging #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Thumbs.db
# Build Directories
bin/
obj/
target

# .webinfo files are user-specific mappings for project endpoints
# http://support.microsoft.com/kb/830611
Expand Down
12 changes: 12 additions & 0 deletions Click to Start.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@echo off
echo When running:
echo Press ESC to recompile and restart
echo Close this window to stop
echo ...

ping localhost -n 2 >NUL


:top
call build start
goto top
6 changes: 6 additions & 0 deletions Edge.sln
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KillScreen", "KillScreen\Ki
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KillScreen.Interop", "KillScreen.Interop\KillScreen.Interop.csproj", "{C7A9B90D-8CDB-405B-8C4A-B84EE33779C1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".build", ".build", "{F20BAD67-4733-46AF-83AF-437154B58D23}"
ProjectSection(SolutionItems) = preProject
Sakefile.shade = Sakefile.shade
build.cmd = build.cmd
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
1 change: 0 additions & 1 deletion Edge/AppBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System;
using System.Collections.Generic;
using System.Text;
using Gate.Middleware;
using System.Diagnostics;
using Edge.IO;
using Edge.Routing;
Expand Down
8 changes: 1 addition & 7 deletions Edge/Edge.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,6 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Gate.0.11\lib\net40\Gate.dll</HintPath>
</Reference>
<Reference Include="Gate.Builder">
<HintPath>..\packages\Gate.Builder.0.11\lib\net40\Gate.Builder.dll</HintPath>
</Reference>
<Reference Include="Gate.Middleware, Version=0.3.6.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Gate.Middleware.0.3.6\lib\net40\Gate.Middleware.dll</HintPath>
</Reference>
<Reference Include="Owin, Version=0.11.0.0, Culture=neutral, PublicKeyToken=f585506a2da1fef4, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Owin.0.11\lib\net40\Owin.dll</HintPath>
Expand Down Expand Up @@ -119,6 +112,7 @@
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="Edge.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
26 changes: 26 additions & 0 deletions Edge/Edge.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>Edge</title>
<authors>$authors$</authors>
<owners>$authors$</owners>
<!--<licenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</licenseUrl>
<projectUrl>http://PROJECT_URL_HERE_OR_DELETE_THIS_LINE</projectUrl>
<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Edge</description>
<!--<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
<copyright>Copyright 2012</copyright>-->
<tags>Razor OWIN</tags>
<dependencies>
<dependency id="Gate" version="0.11" />
<dependency id="Microsoft.AspNet.Razor" version="2.0.20505.0" />
</dependencies>
</metadata>
<files>
<file src="Edge.dll" target="lib" />
<file src="Roslyn.*.dll" target="lib" />
</files>
</package>
2 changes: 0 additions & 2 deletions Edge/packages.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Gate" version="0.11" targetFramework="net45" />
<package id="Gate.Builder" version="0.11" targetFramework="net45" />
<package id="Gate.Middleware" version="0.3.6" targetFramework="net45" />
<package id="Microsoft.AspNet.Razor" version="2.0.20505.0" targetFramework="net45" />
<package id="Owin" version="0.11" targetFramework="net45" />
</packages>
Loading