-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feature: new IPropertyProxy from Mario * Remove IComponentCollection * Remove Services and Properties * Fix Unit tests * Last review today * Remove IDataDictionary * Fix namespace * Fix build * Fix stream test * Update README.md * Remove useless directives * Fix build for NET461 * Some null checks * Working on CI * Update Swan.Lite.csproj * Update Swan.csproj
- Loading branch information
Showing
63 changed files
with
416 additions
and
3,904 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
version: '1.00.{build}' | ||
image: | ||
- Visual Studio 2019 | ||
- Ubuntu | ||
stack: node 10 | ||
image: Visual Studio 2019 | ||
notifications: | ||
- provider: Slack | ||
auth_token: | ||
|
@@ -18,30 +15,25 @@ environment: | |
secure: HzWdswNyfQbQ0vLk9IQyO+Ei9mxoPYp9rvv6HPhtC9J/Fm7EHRzyV953pbPRXI9I | ||
before_build: | ||
- ps: | | ||
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE -And $isWindows) | ||
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE) | ||
{ | ||
git checkout $env:APPVEYOR_REPO_BRANCH -q | ||
cinst docfx -y --no-progress | ||
} | ||
- ps: | | ||
if($isWindows) | ||
{ | ||
Install-Product node 10 | ||
} | ||
- ps: Install-Product node 10 | ||
- npm ci | ||
- ps: $SMTP = Start-Process node mail.js -PassThru | ||
- ps: $WEB = Start-Process node web.js -PassThru | ||
- ps: $TCP = Start-Process node tcp.js -PassThru | ||
- ps: $NTP = Start-Process node ntp.js -PassThru | ||
- dotnet restore -v Minimal | ||
- cmd: mkdir tools | ||
build_script: | ||
- msbuild /p:Configuration=Release /verbosity:quiet | ||
test_script: | ||
- dotnet test test/Swan.Test/Swan.Test.csproj -c Release | ||
after_build: | ||
- ps: | | ||
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE -And $isWindows -And $env:APPVEYOR_REPO_BRANCH -eq "master") | ||
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE -And $env:APPVEYOR_REPO_BRANCH -eq "master") | ||
{ | ||
git config --global credential.helper store | ||
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):[email protected]`n" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.