forked from wieslawsoltes/wmf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwmf.sln
More file actions
68 lines (68 loc) · 3.8 KB
/
wmf.sln
File metadata and controls
68 lines (68 loc) · 3.8 KB
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
60
61
62
63
64
65
66
67
68
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29911.84
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Console", "samples\sample\Console.csproj", "{5B3E5BA0-596A-41F9-8C91-08D712E7E710}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Library", "src\library\Library.csproj", "{9D44E324-1E23-4726-8E4C-AAB3FD2C7C1E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{B97138F1-AEE4-4BDB-9546-D7DDB34878FC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{8D4EF1C6-5483-4C76-83F6-74EF07986AA9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{C3880503-92E3-4E79-9D86-E911465F8974}"
ProjectSection(SolutionItems) = preProject
LICENSE = LICENSE
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{03CD658F-BB16-4EB5-972F-F06D666AD955}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
NuGet.Config = NuGet.Config
azure-pipelines.yml = azure-pipelines.yml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E63E95FB-C1D9-49C7-A82D-3E93C3A8CF9C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "library.UnitTests", "tests\library.UnitTests\library.UnitTests.csproj", "{43637B1F-18D0-4E00-836E-F2B8A6252923}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "_build", "build\build\_build.csproj", "{120BEB32-7CA2-40CE-B833-2BCB80982CA0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5B3E5BA0-596A-41F9-8C91-08D712E7E710}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5B3E5BA0-596A-41F9-8C91-08D712E7E710}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5B3E5BA0-596A-41F9-8C91-08D712E7E710}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5B3E5BA0-596A-41F9-8C91-08D712E7E710}.Release|Any CPU.Build.0 = Release|Any CPU
{9D44E324-1E23-4726-8E4C-AAB3FD2C7C1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D44E324-1E23-4726-8E4C-AAB3FD2C7C1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D44E324-1E23-4726-8E4C-AAB3FD2C7C1E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D44E324-1E23-4726-8E4C-AAB3FD2C7C1E}.Release|Any CPU.Build.0 = Release|Any CPU
{43637B1F-18D0-4E00-836E-F2B8A6252923}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{43637B1F-18D0-4E00-836E-F2B8A6252923}.Debug|Any CPU.Build.0 = Debug|Any CPU
{43637B1F-18D0-4E00-836E-F2B8A6252923}.Release|Any CPU.ActiveCfg = Release|Any CPU
{43637B1F-18D0-4E00-836E-F2B8A6252923}.Release|Any CPU.Build.0 = Release|Any CPU
{120BEB32-7CA2-40CE-B833-2BCB80982CA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{120BEB32-7CA2-40CE-B833-2BCB80982CA0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{120BEB32-7CA2-40CE-B833-2BCB80982CA0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{120BEB32-7CA2-40CE-B833-2BCB80982CA0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1222DADC-CF06-4CBE-8621-F1AE649FA998}
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{9D44E324-1E23-4726-8E4C-AAB3FD2C7C1E} = {B97138F1-AEE4-4BDB-9546-D7DDB34878FC}
{5B3E5BA0-596A-41F9-8C91-08D712E7E710} = {8D4EF1C6-5483-4C76-83F6-74EF07986AA9}
{43637B1F-18D0-4E00-836E-F2B8A6252923} = {E63E95FB-C1D9-49C7-A82D-3E93C3A8CF9C}
{120BEB32-7CA2-40CE-B833-2BCB80982CA0} = {03CD658F-BB16-4EB5-972F-F06D666AD955}
EndGlobalSection
EndGlobal