-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from plioi/dotnet-core-rc2
Converted project to .NET Core RC2
- Loading branch information
Showing
27 changed files
with
226 additions
and
452 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
*.sln text eol=crlf | ||
*.xproj text | ||
*.cs text diff=csharp | ||
*.json text | ||
*.txt text | ||
*.md text | ||
|
||
*.cmd text | ||
*.ps1 text | ||
|
||
*.sln text eol=crlf merge=union | ||
*.csproj text merge=union | ||
*.cs text diff=csharp | ||
*.config text | ||
*.nuspec text | ||
|
||
*.exe binary | ||
*.dll binary |
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,7 +1,6 @@ | ||
/artifacts | ||
bin/ | ||
obj/ | ||
/package/ | ||
/src/.vs/ | ||
/src/packages/ | ||
*.DotSettings.user | ||
*.csproj.user | ||
/.vs/ | ||
*.xproj.user | ||
project.lock.json |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 14 | ||
VisualStudioVersion = 14.0.25123.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C902614B-5143-4941-9B54-EDB3404B8BF3}" | ||
EndProject | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DCEC42EC-44D3-4E1B-9F5A-E792B5476B18}" | ||
ProjectSection(SolutionItems) = preProject | ||
global.json = global.json | ||
EndProjectSection | ||
EndProject | ||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Parsley", "src\Parsley\Parsley.xproj", "{432C32EC-8A54-49A6-900E-C0BA38CB3DF4}" | ||
EndProject | ||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Parsley.Tests", "src\Parsley.Tests\Parsley.Tests.xproj", "{21999188-73BC-4C1A-9E9F-1D3E13A472F2}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{432C32EC-8A54-49A6-900E-C0BA38CB3DF4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{432C32EC-8A54-49A6-900E-C0BA38CB3DF4}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{432C32EC-8A54-49A6-900E-C0BA38CB3DF4}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{432C32EC-8A54-49A6-900E-C0BA38CB3DF4}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{21999188-73BC-4C1A-9E9F-1D3E13A472F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{21999188-73BC-4C1A-9E9F-1D3E13A472F2}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{21999188-73BC-4C1A-9E9F-1D3E13A472F2}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{21999188-73BC-4C1A-9E9F-1D3E13A472F2}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
{432C32EC-8A54-49A6-900E-C0BA38CB3DF4} = {C902614B-5143-4941-9B54-EDB3404B8BF3} | ||
{21999188-73BC-4C1A-9E9F-1D3E13A472F2} = {C902614B-5143-4941-9B54-EDB3404B8BF3} | ||
EndGlobalSection | ||
EndGlobal |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: '{build}' | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
branches: | ||
only: | ||
- master | ||
init: | ||
- cmd: git config --global core.autocrlf true | ||
cache: '%USERPROFILE%\.nuget\packages -> **\project.json' | ||
nuget: | ||
disable_publish_on_pr: true | ||
build_script: | ||
- ps: .\build.ps1 | ||
test: off | ||
artifacts: | ||
- path: .\artifacts\**\*.nupkg | ||
name: NuGet | ||
deploy: | ||
- provider: NuGet | ||
api_key: | ||
secure: uZjEAcNGvpxiTjzUDui5CRQcbr9187WEhqUlPxFpDa7VxU3+n4OY+9uQ73cRSYtK | ||
on: | ||
branch: master | ||
appveyor_repo_tag: true |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"projects": [ "src", "test" ], | ||
"sdk": { | ||
"version": "1.0.0-preview1-002702" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
{ | ||
using Shouldly; | ||
using Xunit; | ||
using ErrorMessage = Parsley.ErrorMessage; | ||
|
||
public class ParsedTests | ||
{ | ||
|
Oops, something went wrong.