Initial commit
This commit is contained in:
commit
a0fa8fff16
|
|
@ -0,0 +1,50 @@
|
||||||
|
*.doc diff=astextplain
|
||||||
|
*.DOC diff=astextplain
|
||||||
|
*.docx diff=astextplain
|
||||||
|
*.DOCX diff=astextplain
|
||||||
|
*.dot diff=astextplain
|
||||||
|
*.DOT diff=astextplain
|
||||||
|
*.pdf diff=astextplain
|
||||||
|
*.PDF diff=astextplain
|
||||||
|
*.rtf diff=astextplain
|
||||||
|
*.RTF diff=astextplain
|
||||||
|
|
||||||
|
*.jpg binary
|
||||||
|
*.png binary
|
||||||
|
*.gif binary
|
||||||
|
|
||||||
|
*.cs text=auto diff=csharp
|
||||||
|
*.vb text=auto
|
||||||
|
*.resx text=auto
|
||||||
|
*.c text=auto
|
||||||
|
*.cpp text=auto
|
||||||
|
*.cxx text=auto
|
||||||
|
*.h text=auto
|
||||||
|
*.hxx text=auto
|
||||||
|
*.py text=auto
|
||||||
|
*.rb text=auto
|
||||||
|
*.java text=auto
|
||||||
|
*.html text=auto
|
||||||
|
*.htm text=auto
|
||||||
|
*.css text=auto
|
||||||
|
*.scss text=auto
|
||||||
|
*.sass text=auto
|
||||||
|
*.less text=auto
|
||||||
|
*.js text=auto
|
||||||
|
*.lisp text=auto
|
||||||
|
*.clj text=auto
|
||||||
|
*.sql text=auto
|
||||||
|
*.php text=auto
|
||||||
|
*.lua text=auto
|
||||||
|
*.m text=auto
|
||||||
|
*.asm text=auto
|
||||||
|
*.erl text=auto
|
||||||
|
*.fs text=auto
|
||||||
|
*.fsx text=auto
|
||||||
|
*.hs text=auto
|
||||||
|
|
||||||
|
*.csproj text=auto
|
||||||
|
*.vbproj text=auto
|
||||||
|
*.fsproj text=auto
|
||||||
|
*.dbproj text=auto
|
||||||
|
*.sln text=auto eol=crlf
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
[Oo]bj/
|
||||||
|
[Bb]in/
|
||||||
|
TestResults/
|
||||||
|
.nuget/
|
||||||
|
*.sln.ide/
|
||||||
|
_ReSharper.*/
|
||||||
|
packages/
|
||||||
|
artifacts/
|
||||||
|
PublishProfiles/
|
||||||
|
.vs/
|
||||||
|
bower_components/
|
||||||
|
node_modules/
|
||||||
|
**/wwwroot/lib/
|
||||||
|
debugSettings.json
|
||||||
|
project.lock.json
|
||||||
|
*.user
|
||||||
|
*.suo
|
||||||
|
*.cache
|
||||||
|
*.docstates
|
||||||
|
_ReSharper.*
|
||||||
|
nuget.exe
|
||||||
|
*net45.csproj
|
||||||
|
*net451.csproj
|
||||||
|
*k10.csproj
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
*.pidb
|
||||||
|
*.userprefs
|
||||||
|
*DS_Store
|
||||||
|
*.ncrunchsolution
|
||||||
|
*.*sdf
|
||||||
|
*.ipch
|
||||||
|
.settings
|
||||||
|
*.sln.ide
|
||||||
|
node_modules
|
||||||
|
**/[Cc]ompiler/[Rr]esources/**/*.js
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
Contributing
|
||||||
|
======
|
||||||
|
|
||||||
|
Information on contributing to this repo is in the [Contributing Guide](https://github.com/aspnet/Home/blob/master/CONTRIBUTING.md) in the Home repo.
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
these files except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software distributed
|
||||||
|
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||||||
|
CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
||||||
|
specific language governing permissions and limitations under the License.
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/api/v2" />
|
||||||
|
<add key="NuGet.org" value="https://nuget.org/api/v2/" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
CORS
|
||||||
|
===
|
||||||
|
CORS repository includes the core implementation for CORS policy, utilized by the CORS middleware and MVC.
|
||||||
|
This project is part of ASP.NET 5. You can find samples, documentation and getting started instructions for ASP.NET 5 at the [Home](https://github.com/aspnet/home) repo.
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
@echo off
|
||||||
|
cd %~dp0
|
||||||
|
|
||||||
|
SETLOCAL
|
||||||
|
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
|
||||||
|
|
||||||
|
IF EXIST %CACHED_NUGET% goto copynuget
|
||||||
|
echo Downloading latest version of NuGet.exe...
|
||||||
|
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
|
||||||
|
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
|
||||||
|
|
||||||
|
:copynuget
|
||||||
|
IF EXIST .nuget\nuget.exe goto restore
|
||||||
|
md .nuget
|
||||||
|
copy %CACHED_NUGET% .nuget\nuget.exe > nul
|
||||||
|
|
||||||
|
:restore
|
||||||
|
IF EXIST packages\KoreBuild goto run
|
||||||
|
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
|
||||||
|
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
|
||||||
|
|
||||||
|
IF "%SKIP_KRE_INSTALL%"=="1" goto run
|
||||||
|
CALL packages\KoreBuild\build\kvm upgrade -runtime CLR -x86
|
||||||
|
CALL packages\KoreBuild\build\kvm install default -runtime CoreCLR -x86
|
||||||
|
|
||||||
|
:run
|
||||||
|
CALL packages\KoreBuild\build\kvm use default -runtime CLR -x86
|
||||||
|
packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %*
|
||||||
|
|
@ -0,0 +1,38 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if test `uname` = Darwin; then
|
||||||
|
cachedir=~/Library/Caches/KBuild
|
||||||
|
else
|
||||||
|
if [ -z $XDG_DATA_HOME ]; then
|
||||||
|
cachedir=$HOME/.local/share
|
||||||
|
else
|
||||||
|
cachedir=$XDG_DATA_HOME;
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
mkdir -p $cachedir
|
||||||
|
|
||||||
|
url=https://www.nuget.org/nuget.exe
|
||||||
|
|
||||||
|
if test ! -f $cachedir/nuget.exe; then
|
||||||
|
wget -O $cachedir/nuget.exe $url 2>/dev/null || curl -o $cachedir/nuget.exe --location $url /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test ! -e .nuget; then
|
||||||
|
mkdir .nuget
|
||||||
|
cp $cachedir/nuget.exe .nuget/nuget.exe
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test ! -d packages/KoreBuild; then
|
||||||
|
mono .nuget/nuget.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
|
||||||
|
mono .nuget/nuget.exe install Sake -version 0.2 -o packages -ExcludeVersion
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! type k > /dev/null 2>&1; then
|
||||||
|
source packages/KoreBuild/build/kvm.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! type k > /dev/null 2>&1; then
|
||||||
|
kvm upgrade
|
||||||
|
fi
|
||||||
|
|
||||||
|
mono packages/Sake/tools/Sake.exe -I packages/KoreBuild/build -f makefile.shade "$@"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"sources": ["src"]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
var VERSION='0.1'
|
||||||
|
var FULL_VERSION='0.1'
|
||||||
|
var AUTHORS='Microsoft Open Technologies, Inc.'
|
||||||
|
|
||||||
|
use-standard-lifecycle
|
||||||
|
k-standard-goals
|
||||||
|
|
||||||
|
#xml-docs-test .clean .build-compile description='Check generated XML documentation files for errors' target='test'
|
||||||
|
k-xml-docs-test
|
||||||
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue