Skip to content

Commit 8af8221

Browse files
authoredAug 1, 2017
Merge pull request ChangemakerStudios#63 from jijiechen/webui
Basic web ui features
2 parents 968cef8 + 67d227a commit 8af8221

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+34168
-38
lines changed
 

‎Papercut.sln

+16
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Papercut.Network", "src\Pap
2929
EndProject
3030
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Papercut.Common", "src\Papercut.Common\Papercut.Common.csproj", "{5FA0E4AA-27AF-4801-B6CA-8C97DADD6DA6}"
3131
EndProject
32+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Papercut.Modeule.WebUI", "src\Papercut.Module.WebUI\Papercut.Modeule.WebUI.csproj", "{A1C924F3-3CFB-4844-B79F-8BFFEC60EEBF}"
33+
EndProject
34+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{2D6337D4-FD59-49E0-9209-4B06219DB29D}"
35+
EndProject
36+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Papercut.Module.WebUI.Tests", "test\Papercut.Module.WebUI.Tests\Papercut.Module.WebUI.Tests.csproj", "{9EA3D96F-4B03-404D-BD2D-EBE12C1C1FFA}"
37+
EndProject
3238
Global
3339
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3440
Debug|Any CPU = Debug|Any CPU
@@ -69,12 +75,22 @@ Global
6975
{5FA0E4AA-27AF-4801-B6CA-8C97DADD6DA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
7076
{5FA0E4AA-27AF-4801-B6CA-8C97DADD6DA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
7177
{5FA0E4AA-27AF-4801-B6CA-8C97DADD6DA6}.Release|Any CPU.Build.0 = Release|Any CPU
78+
{A1C924F3-3CFB-4844-B79F-8BFFEC60EEBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79+
{A1C924F3-3CFB-4844-B79F-8BFFEC60EEBF}.Debug|Any CPU.Build.0 = Debug|Any CPU
80+
{A1C924F3-3CFB-4844-B79F-8BFFEC60EEBF}.Release|Any CPU.ActiveCfg = Release|Any CPU
81+
{A1C924F3-3CFB-4844-B79F-8BFFEC60EEBF}.Release|Any CPU.Build.0 = Release|Any CPU
82+
{9EA3D96F-4B03-404D-BD2D-EBE12C1C1FFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
83+
{9EA3D96F-4B03-404D-BD2D-EBE12C1C1FFA}.Debug|Any CPU.Build.0 = Debug|Any CPU
84+
{9EA3D96F-4B03-404D-BD2D-EBE12C1C1FFA}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{9EA3D96F-4B03-404D-BD2D-EBE12C1C1FFA}.Release|Any CPU.Build.0 = Release|Any CPU
7286
EndGlobalSection
7387
GlobalSection(SolutionProperties) = preSolution
7488
HideSolutionNode = FALSE
7589
EndGlobalSection
7690
GlobalSection(NestedProjects) = preSolution
7791
{5E6526B3-4DA9-41F4-8171-C34146AC2E55} = {8B3498DF-6DDE-44F5-8428-1B82749933BE}
7892
{F60D44E1-100E-464A-A280-CA6BAF652177} = {8B3498DF-6DDE-44F5-8428-1B82749933BE}
93+
{A1C924F3-3CFB-4844-B79F-8BFFEC60EEBF} = {8B3498DF-6DDE-44F5-8428-1B82749933BE}
94+
{9EA3D96F-4B03-404D-BD2D-EBE12C1C1FFA} = {2D6337D4-FD59-49E0-9209-4B06219DB29D}
7995
EndGlobalSection
8096
EndGlobal

‎appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ after_build:
1010
- cd %APPVEYOR_BUILD_FOLDER%\src\Papercut.UI\bin\Release
1111
- md plugins
1212
- move Papercut.Module.*.dll plugins
13+
- move Papercut.Module.*.config plugins
1314
- 7z a Papercut.%APPVEYOR_BUILD_VERSION%.zip plugins
1415
- 7z a Papercut.%APPVEYOR_BUILD_VERSION%.zip Papercut.exe
1516
- 7z a Papercut.%APPVEYOR_BUILD_VERSION%.zip Papercut.exe.*
@@ -19,6 +20,7 @@ after_build:
1920
- cd %APPVEYOR_BUILD_FOLDER%\src\Papercut.Service\bin\Release
2021
- md plugins
2122
- move Papercut.Module.*.dll plugins
23+
- move Papercut.Module.*.config plugins
2224
- 7z a PapercutService.%APPVEYOR_BUILD_VERSION%.zip plugins
2325
- 7z a PapercutService.%APPVEYOR_BUILD_VERSION%.zip Papercut.Service.*
2426
- 7z a PapercutService.%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\extras\Install-Papercut-Service.bat

0 commit comments

Comments
 (0)