add readme
This commit is contained in:
parent
6395ffbff5
commit
37de4976b3
7 changed files with 108 additions and 2866 deletions
7
NuGet.master.config
Normal file
7
NuGet.master.config
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
14
README.md
Normal file
14
README.md
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# .NET Command Line Interface
|
||||||
|
|
||||||
|
## Building/Running
|
||||||
|
|
||||||
|
1. Run `build.cmd` or `build.sh` from the root
|
||||||
|
2. Use `scripts/dotnet` to try out the `dotnet` command.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
Right now the CLI uses [DNX](https://github.com/aspnet/dnx) as an application host. Eventually it will become self-hosted, but for now that means a few things:
|
||||||
|
|
||||||
|
* Requires VS 2015 with Web Development Tools installed to open in VS
|
||||||
|
* Requires that you have a DNX installed (the build script _should_ set it up for you though)
|
||||||
|
* Compilation is not required before building, but you must run `dnu restore` (which comes from the DNX commands) after changing dependencies. If you add/remove dependencies in VS, it will run it for you
|
39
build.cmd
Normal file
39
build.cmd
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
@echo off
|
||||||
|
cd %~dp0
|
||||||
|
|
||||||
|
SETLOCAL
|
||||||
|
SET NUGET_VERSION=latest
|
||||||
|
SET CACHED_NUGET=%LocalAppData%\NuGet\nuget.%NUGET_VERSION%.exe
|
||||||
|
SET BUILDCMD_KOREBUILD_VERSION=""
|
||||||
|
SET BUILDCMD_DNX_VERSION=""
|
||||||
|
|
||||||
|
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://dist.nuget.org/win-x86-commandline/%NUGET_VERSION%/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
|
||||||
|
IF %BUILDCMD_KOREBUILD_VERSION%=="" (
|
||||||
|
.nuget\nuget.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
|
||||||
|
) ELSE (
|
||||||
|
.nuget\nuget.exe install KoreBuild -version %BUILDCMD_KOREBUILD_VERSION% -ExcludeVersion -o packages -nocache -pre
|
||||||
|
)
|
||||||
|
.nuget\nuget.exe install Sake -ExcludeVersion -Out packages
|
||||||
|
|
||||||
|
IF "%SKIP_DNX_INSTALL%"=="1" goto run
|
||||||
|
IF %BUILDCMD_DNX_VERSION%=="" (
|
||||||
|
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
|
||||||
|
) ELSE (
|
||||||
|
CALL packages\KoreBuild\build\dnvm install %BUILDCMD_DNX_VERSION% -runtime CLR -arch x86 -alias default
|
||||||
|
)
|
||||||
|
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86
|
||||||
|
|
||||||
|
:run
|
||||||
|
CALL packages\KoreBuild\build\dnvm use default -runtime CLR -arch x86
|
||||||
|
packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %*
|
40
build.sh
Normal file
40
build.sh
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#!/usr/bin/env 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
|
||||||
|
nugetVersion=latest
|
||||||
|
cachePath=$cachedir/nuget.$nugetVersion.exe
|
||||||
|
|
||||||
|
url=https://dist.nuget.org/win-x86-commandline/$nugetVersion/nuget.exe
|
||||||
|
|
||||||
|
if test ! -f $cachePath; then
|
||||||
|
wget -O $cachePath $url 2>/dev/null || curl -o $cachePath --location $url /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test ! -e .nuget; then
|
||||||
|
mkdir .nuget
|
||||||
|
cp $cachePath .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 -ExcludeVersion -Out packages
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! type dnvm > /dev/null 2>&1; then
|
||||||
|
source packages/KoreBuild/build/dnvm.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! type dnx > /dev/null 2>&1; then
|
||||||
|
dnvm upgrade
|
||||||
|
fi
|
||||||
|
|
||||||
|
mono packages/Sake/tools/Sake.exe -I packages/KoreBuild/build -f makefile.shade "$@"
|
7
makefile.shade
Normal file
7
makefile.shade
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
var VERSION='0.1'
|
||||||
|
var FULL_VERSION='0.1'
|
||||||
|
var AUTHORS='Microsoft Open Technologies, Inc.'
|
||||||
|
|
||||||
|
use-standard-lifecycle
|
||||||
|
k-standard-goals
|
|
@ -4,7 +4,7 @@
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"commands": {
|
"commands": {
|
||||||
"dotnet": "Microsoft.DotNet.Cli"
|
"run": "Microsoft.DotNet.Cli"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"System.Console": "4.0.0-*",
|
"System.Console": "4.0.0-*",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue