Skip to content

Commit

Permalink
Remove Core from project names and folders #96
Browse files Browse the repository at this point in the history
  • Loading branch information
martinnormark committed Aug 3, 2016
1 parent d64cf2e commit 2d1bd1b
Show file tree
Hide file tree
Showing 36 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"testRunner": "xunit",
"dependencies": {
"xunit": "2.2.0-beta2-build3300",
"PreMailer.Net.Core": "1.0.0-*",
"PreMailer.Net": "1.0.0-*",
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"Moq": "4.6.36-alpha"
},
Expand Down
4 changes: 2 additions & 2 deletions PreMailer.Net/PreMailer.Net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PreMailer.Net.Core", "PreMailer.Net.Core\PreMailer.Net.Core.xproj", "{4FD99B58-5FCD-4D2D-92F6-1C7BBAE6CCB0}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PreMailer.Net", "PreMailer.Net\PreMailer.Net.xproj", "{4FD99B58-5FCD-4D2D-92F6-1C7BBAE6CCB0}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PreMailer.Net.Core.Tests", "PreMailer.Net.Core.Tests\PreMailer.Net.Core.Tests.xproj", "{19A50897-9630-483A-B222-8E50CAB720BE}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PreMailer.Net.Tests", "PreMailer.Net.Tests\PreMailer.Net.Tests.xproj", "{19A50897-9630-483A-B222-8E50CAB720BE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{965B1D5F-8DCB-4D0D-8B38-93BD0E72BCFE}"
ProjectSection(SolutionItems) = preProject
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ before_build:
- cmd: dotnet restore

build_script:
- cmd: dotnet build PreMailer.Net.Core -c Release --version-suffix beta%APPVEYOR_BUILD_NUMBER%
- cmd: dotnet build PreMailer.Net -c Release --version-suffix beta%APPVEYOR_BUILD_NUMBER%

test: off
test_script:
- cmd: dotnet test PreMailer.Net.Core.Tests
- cmd: dotnet test PreMailer.Net.Tests

artifacts:
- path: '**/*.nupkg'
name: PreMailer.nupkg

after_build:
- cmd: dotnet pack PreMailer.Net.Core -c Release -o ./dist --version-suffix beta%APPVEYOR_BUILD_NUMBER%
- cmd: dotnet pack PreMailer.Net -c Release -o ./dist --version-suffix beta%APPVEYOR_BUILD_NUMBER%

deploy:
- provider: NuGet
Expand Down

0 comments on commit 2d1bd1b

Please sign in to comment.