Skip to content

Commit df3c7dd

Browse files
authored
Merge pull request #31 from akkadotnet/dev
Publish v1.3.0
2 parents b96b905 + 0e0bd4f commit df3c7dd

File tree

14 files changed

+263
-704
lines changed

14 files changed

+263
-704
lines changed

.gitignore

Lines changed: 15 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@
1717
[Rr]eleases/
1818
x64/
1919
x86/
20+
build/
2021
bld/
2122
[Bb]in/
2223
[Oo]bj/
24+
.fake/
25+
TestResults/
26+
PerfResults/
27+
*.lock.json
2328

24-
# Visual Studio 2015 cache/options directory
29+
# Visual Studo 2015 cache/options directory
2530
.vs/
26-
# Uncomment if you have tasks that create the project's static files in wwwroot
27-
#wwwroot/
2831

2932
# MSTest test Results
3033
[Tt]est[Rr]esult*/
@@ -39,10 +42,6 @@ TestResult.xml
3942
[Rr]eleasePS/
4043
dlldata.c
4144

42-
# DNX
43-
project.lock.json
44-
artifacts/
45-
4645
*_i.c
4746
*_p.c
4847
*_i.h
@@ -75,7 +74,6 @@ _Chutzpah*
7574
ipch/
7675
*.aps
7776
*.ncb
78-
*.opendb
7977
*.opensdf
8078
*.sdf
8179
*.cachefile
@@ -84,7 +82,6 @@ ipch/
8482
*.psess
8583
*.vsp
8684
*.vspx
87-
*.sap
8885

8986
# TFS 2012 Local Workspace
9087
$tf/
@@ -97,7 +94,7 @@ _ReSharper*/
9794
*.[Rr]e[Ss]harper
9895
*.DotSettings.user
9996

100-
# JustCode is a .NET coding add-in
97+
# JustCode is a .NET coding addin-in
10198
.JustCode
10299

103100
# TeamCity is a build add-in
@@ -109,7 +106,6 @@ _TeamCity*
109106
# NCrunch
110107
_NCrunch_*
111108
.*crunch*.local.xml
112-
nCrunchTemp_*
113109

114110
# MightyMoose
115111
*.mm.*
@@ -150,41 +146,26 @@ publish/
150146
!**/packages/build/
151147
# Uncomment if necessary however generally it will be regenerated when needed
152148
#!**/packages/repositories.config
153-
# NuGet v3's project.json files produces more ignoreable files
154-
*.nuget.props
155-
*.nuget.targets
156149

157-
# Microsoft Azure Build Output
150+
# Windows Azure Build Output
158151
csx/
159152
*.build.csdef
160153

161-
# Microsoft Azure Emulator
162-
ecf/
163-
rcf/
164-
165-
# Microsoft Azure ApplicationInsights config file
166-
ApplicationInsights.config
167-
168154
# Windows Store app package directory
169155
AppPackages/
170-
BundleArtifacts/
171-
172-
# Visual Studio cache files
173-
# files ending in .cache can be ignored
174-
*.[Cc]ache
175-
# but keep track of directories ending in .cache
176-
!*.[Cc]ache/
177156

178157
# Others
158+
*.[Cc]ache
179159
ClientBin/
160+
[Ss]tyle[Cc]op.*
180161
~$*
181162
*~
182163
*.dbmdl
183164
*.dbproj.schemaview
184165
*.pfx
185166
*.publishsettings
186167
node_modules/
187-
orleans.codegen.cs
168+
bower_components/
188169

189170
# RIA/Silverlight projects
190171
Generated_Code/
@@ -209,9 +190,6 @@ UpgradeLog*.htm
209190
# Microsoft Fakes
210191
FakesAssemblies/
211192

212-
# GhostDoc plugin setting file
213-
*.GhostDoc.xml
214-
215193
# Node.js Tools for Visual Studio
216194
.ntvs_analysis.dat
217195

@@ -221,16 +199,7 @@ FakesAssemblies/
221199
# Visual Studio 6 workspace options file
222200
*.opt
223201

224-
# Visual Studio LightSwitch build output
225-
**/*.HTMLClient/GeneratedArtifacts
226-
**/*.DesktopClient/GeneratedArtifacts
227-
**/*.DesktopClient/ModelManifest.xml
228-
**/*.Server/GeneratedArtifacts
229-
**/*.Server/ModelManifest.xml
230-
_Pvt_Extensions
231-
232-
# Paket dependency manager
233-
.paket/paket.exe
234-
235-
# FAKE - F# Make
236-
.fake/
202+
tools/
203+
build/
204+
.nuget/
205+
.dotnet/

build.cmd

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1 @@
1-
@echo off
2-
3-
pushd %~dp0
4-
5-
SETLOCAL
6-
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
7-
8-
IF EXIST %CACHED_NUGET% goto copynuget
9-
echo Downloading latest version of NuGet.exe...
10-
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
11-
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
12-
13-
:copynuget
14-
IF EXIST src\.nuget\nuget.exe goto restore
15-
md src\.nuget
16-
copy %CACHED_NUGET% src\.nuget\nuget.exe > nul
17-
18-
:restore
19-
20-
src\.nuget\NuGet.exe update -self
21-
22-
23-
pushd %~dp0
24-
25-
src\.nuget\NuGet.exe update -self
26-
27-
src\.nuget\NuGet.exe install FAKE -ConfigFile src\.nuget\Nuget.Config -OutputDirectory src\packages -ExcludeVersion -Version 4.16.1
28-
29-
if not exist src\packages\SourceLink.Fake\tools\SourceLink.fsx (
30-
src\.nuget\nuget.exe install SourceLink.Fake -ConfigFile src\.nuget\Nuget.Config -OutputDirectory src\packages -ExcludeVersion
31-
)
32-
rem cls
33-
34-
set encoding=utf-8
35-
src\packages\FAKE\tools\FAKE.exe build.fsx %*
36-
37-
popd
1+
PowerShell.exe -file "build.ps1" %*

0 commit comments

Comments
 (0)