-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHtmlToPdfConverter.sln
59 lines (59 loc) · 3.51 KB
/
HtmlToPdfConverter.sln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.168
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "01 HtmlToPdfConverter", "01 HtmlToPdfConverter", "{385B78D4-276A-4541-BFA3-4FBE77C01DC3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlToPdfConverter.Tests", "Test\HtmlToPdfConverter.Tests\HtmlToPdfConverter.Tests.csproj", "{1ED7F49A-F222-4D35-80A7-2F6DED863B35}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlToPdfConverter", "Source\HtmlToPdfConverter\HtmlToPdfConverter.csproj", "{CDB788AC-43F0-458C-A135-419213F221A7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlToPdfConverter.Core", "Source\HtmlToPdfConverter.Core\HtmlToPdfConverter.Core.csproj", "{0C434848-35BB-4D8E-8957-040D3AD236D0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestHost", "Test\TestHost\TestHost.csproj", "{F23EF6D8-6D34-464B-BBE6-A90F6BA8F688}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4FD6EDE5-C549-4AB1-9859-B90B4E37C371}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ServiceTests", "ServiceTests", "{67F9ABDD-E007-4B77-A645-66F9A80AE3DA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1ED7F49A-F222-4D35-80A7-2F6DED863B35}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1ED7F49A-F222-4D35-80A7-2F6DED863B35}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1ED7F49A-F222-4D35-80A7-2F6DED863B35}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1ED7F49A-F222-4D35-80A7-2F6DED863B35}.Release|Any CPU.Build.0 = Release|Any CPU
{CDB788AC-43F0-458C-A135-419213F221A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CDB788AC-43F0-458C-A135-419213F221A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CDB788AC-43F0-458C-A135-419213F221A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CDB788AC-43F0-458C-A135-419213F221A7}.Release|Any CPU.Build.0 = Release|Any CPU
{0C434848-35BB-4D8E-8957-040D3AD236D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C434848-35BB-4D8E-8957-040D3AD236D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C434848-35BB-4D8E-8957-040D3AD236D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C434848-35BB-4D8E-8957-040D3AD236D0}.Release|Any CPU.Build.0 = Release|Any CPU
{F23EF6D8-6D34-464B-BBE6-A90F6BA8F688}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F23EF6D8-6D34-464B-BBE6-A90F6BA8F688}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F23EF6D8-6D34-464B-BBE6-A90F6BA8F688}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F23EF6D8-6D34-464B-BBE6-A90F6BA8F688}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{1ED7F49A-F222-4D35-80A7-2F6DED863B35} = {67F9ABDD-E007-4B77-A645-66F9A80AE3DA}
{CDB788AC-43F0-458C-A135-419213F221A7} = {385B78D4-276A-4541-BFA3-4FBE77C01DC3}
{0C434848-35BB-4D8E-8957-040D3AD236D0} = {385B78D4-276A-4541-BFA3-4FBE77C01DC3}
{F23EF6D8-6D34-464B-BBE6-A90F6BA8F688} = {67F9ABDD-E007-4B77-A645-66F9A80AE3DA}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C19B9345-892B-4778-B5D5-4D0EA62CF70F}
EndGlobalSection
EndGlobal