-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfind-duplicate-files.sln
More file actions
53 lines (53 loc) · 2.94 KB
/
find-duplicate-files.sln
File metadata and controls
53 lines (53 loc) · 2.94 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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30804.86
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B41AE656-59FF-4684-9649-CEEC35051A04}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Code", "Code", "{5CC1E935-DB4D-42FE-88DE-25898DAED069}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{24AEE8C0-38B2-40AD-80DB-F279EFD7CCD4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "find-duplicate-files-net", "src\find-duplicate-files-net\find-duplicate-files-net.csproj", "{12B6101D-6858-4993-955B-64099212E7FE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Lib", "Lib", "{A33473FC-8C2F-434A-BE06-4FE74080BC6D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NtfsReader", "lib\NtfsReader\NtfsReader.csproj", "{DBACEFC5-0234-4317-B096-F212ECAE1DD1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "src\UnitTests\UnitTests.csproj", "{86C51B2B-6831-4BC6-9016-18645E8B749F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{12B6101D-6858-4993-955B-64099212E7FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{12B6101D-6858-4993-955B-64099212E7FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{12B6101D-6858-4993-955B-64099212E7FE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12B6101D-6858-4993-955B-64099212E7FE}.Release|Any CPU.Build.0 = Release|Any CPU
{DBACEFC5-0234-4317-B096-F212ECAE1DD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DBACEFC5-0234-4317-B096-F212ECAE1DD1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DBACEFC5-0234-4317-B096-F212ECAE1DD1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBACEFC5-0234-4317-B096-F212ECAE1DD1}.Release|Any CPU.Build.0 = Release|Any CPU
{86C51B2B-6831-4BC6-9016-18645E8B749F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{86C51B2B-6831-4BC6-9016-18645E8B749F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{86C51B2B-6831-4BC6-9016-18645E8B749F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{86C51B2B-6831-4BC6-9016-18645E8B749F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{12B6101D-6858-4993-955B-64099212E7FE} = {5CC1E935-DB4D-42FE-88DE-25898DAED069}
{DBACEFC5-0234-4317-B096-F212ECAE1DD1} = {A33473FC-8C2F-434A-BE06-4FE74080BC6D}
{86C51B2B-6831-4BC6-9016-18645E8B749F} = {24AEE8C0-38B2-40AD-80DB-F279EFD7CCD4}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DF8A7483-1929-46EB-8D5D-FB7F70129FC2}
EndGlobalSection
EndGlobal