Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit cb13885

Browse files
author
Darrell Tunnell
committed
#40 - Restructured solution based on netstandard 1.3 project.
1 parent 43121d6 commit cb13885

Some content is hidden

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

41 files changed

+180
-4469
lines changed

src/GitTools.Core.Tests/GitTools.Core.Tests.csproj

-6
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,6 @@
7878
<Compile Include="GlobalInitialization.cs" />
7979
<Compile Include="Properties\AssemblyInfo.cs" />
8080
</ItemGroup>
81-
<ItemGroup>
82-
<ProjectReference Include="..\GitTools.Core\GitTools.Core.NET40\GitTools.Core.NET40.csproj">
83-
<Project>{C11252F9-0ECA-44DC-860B-E029C04FBD10}</Project>
84-
<Name>GitTools.Core.NET40</Name>
85-
</ProjectReference>
86-
</ItemGroup>
8781
<ItemGroup>
8882
<None Include="app.config" />
8983
<None Include="packages.config" />

src/GitTools.Core.sln

+9-32
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,26 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.14
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".misc", ".misc", "{72ECAB81-A674-4AC8-8795-7AD71C3E1A5A}"
77
ProjectSection(SolutionItems) = preProject
8+
..\.gitattributes = ..\.gitattributes
9+
..\.gitignore = ..\.gitignore
810
..\.travis.yml = ..\.travis.yml
911
..\appveyor.yml = ..\appveyor.yml
1012
GitTools.Core.sln.DotSettings = GitTools.Core.sln.DotSettings
1113
..\GitVersionConfig.yaml = ..\GitVersionConfig.yaml
1214
..\README.md = ..\README.md
1315
Settings.StyleCop = Settings.StyleCop
1416
SolutionAssemblyInfo.cs = SolutionAssemblyInfo.cs
15-
..\.gitattributes = ..\.gitattributes
16-
..\.gitignore = ..\.gitignore
1717
EndProjectSection
1818
EndProject
1919
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTools.Core.Tests", "GitTools.Core.Tests\GitTools.Core.Tests.csproj", "{0834BE9B-5CDE-4CAB-A683-C70A7D91450B}"
2020
EndProject
21-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTools.Core.NET40", "GitTools.Core\GitTools.Core.NET40\GitTools.Core.NET40.csproj", "{C11252F9-0ECA-44DC-860B-E029C04FBD10}"
22-
EndProject
23-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GitTools.Core", "GitTools.Core", "{753DD689-12ED-42D8-8AF7-936336D65FA0}"
24-
ProjectSection(SolutionItems) = preProject
25-
GitTools.Core\GitTools.Core.nuspec = GitTools.Core\GitTools.Core.nuspec
26-
EndProjectSection
27-
EndProject
28-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTools.Core.NET45", "GitTools.Core\GitTools.Core.NET45\GitTools.Core.NET45.csproj", "{66295D7C-58FD-4641-AEAB-3DF7EA8FA4D2}"
29-
EndProject
30-
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "GitTools.Core.Shared", "GitTools.Core\GitTools.Core.Shared\GitTools.Core.Shared.shproj", "{C4B449DF-3E78-4F3B-81A8-DE0DC5827532}"
21+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitTools.Core", "GitTools.Core\GitTools.Core.csproj", "{DD19E93F-C6CC-4748-9EF8-146101AA7F59}"
3122
EndProject
3223
Global
33-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
34-
GitTools.Core\GitTools.Core.Shared\GitTools.Core.Shared.projitems*{66295d7c-58fd-4641-aeab-3df7ea8fa4d2}*SharedItemsImports = 4
35-
GitTools.Core\GitTools.Core.Shared\GitTools.Core.Shared.projitems*{c4b449df-3e78-4f3b-81a8-de0dc5827532}*SharedItemsImports = 13
36-
GitTools.Core\GitTools.Core.Shared\GitTools.Core.Shared.projitems*{c11252f9-0eca-44dc-860b-e029c04fbd10}*SharedItemsImports = 4
37-
EndGlobalSection
3824
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3925
Debug|Any CPU = Debug|Any CPU
4026
Release|Any CPU = Release|Any CPU
@@ -44,21 +30,12 @@ Global
4430
{0834BE9B-5CDE-4CAB-A683-C70A7D91450B}.Debug|Any CPU.Build.0 = Debug|Any CPU
4531
{0834BE9B-5CDE-4CAB-A683-C70A7D91450B}.Release|Any CPU.ActiveCfg = Release|Any CPU
4632
{0834BE9B-5CDE-4CAB-A683-C70A7D91450B}.Release|Any CPU.Build.0 = Release|Any CPU
47-
{C11252F9-0ECA-44DC-860B-E029C04FBD10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
48-
{C11252F9-0ECA-44DC-860B-E029C04FBD10}.Debug|Any CPU.Build.0 = Debug|Any CPU
49-
{C11252F9-0ECA-44DC-860B-E029C04FBD10}.Release|Any CPU.ActiveCfg = Release|Any CPU
50-
{C11252F9-0ECA-44DC-860B-E029C04FBD10}.Release|Any CPU.Build.0 = Release|Any CPU
51-
{66295D7C-58FD-4641-AEAB-3DF7EA8FA4D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
52-
{66295D7C-58FD-4641-AEAB-3DF7EA8FA4D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
53-
{66295D7C-58FD-4641-AEAB-3DF7EA8FA4D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
54-
{66295D7C-58FD-4641-AEAB-3DF7EA8FA4D2}.Release|Any CPU.Build.0 = Release|Any CPU
33+
{DD19E93F-C6CC-4748-9EF8-146101AA7F59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34+
{DD19E93F-C6CC-4748-9EF8-146101AA7F59}.Debug|Any CPU.Build.0 = Debug|Any CPU
35+
{DD19E93F-C6CC-4748-9EF8-146101AA7F59}.Release|Any CPU.ActiveCfg = Release|Any CPU
36+
{DD19E93F-C6CC-4748-9EF8-146101AA7F59}.Release|Any CPU.Build.0 = Release|Any CPU
5537
EndGlobalSection
5638
GlobalSection(SolutionProperties) = preSolution
5739
HideSolutionNode = FALSE
5840
EndGlobalSection
59-
GlobalSection(NestedProjects) = preSolution
60-
{C11252F9-0ECA-44DC-860B-E029C04FBD10} = {753DD689-12ED-42D8-8AF7-936336D65FA0}
61-
{66295D7C-58FD-4641-AEAB-3DF7EA8FA4D2} = {753DD689-12ED-42D8-8AF7-936336D65FA0}
62-
{C4B449DF-3E78-4F3B-81A8-DE0DC5827532} = {753DD689-12ED-42D8-8AF7-936336D65FA0}
63-
EndGlobalSection
6441
EndGlobal

src/GitTools.Core/GitTools.Core.Shared/Exceptions/WarningException.cs renamed to src/GitTools.Core/Exceptions/WarningException.cs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public WarningException(string message)
1111
{
1212
}
1313

14+
1415
protected WarningException(SerializationInfo info, StreamingContext context)
1516
: base(info, context)
1617
{

src/GitTools.Core/GitTools.Core.NET40/GitTools.Core.NET40.csproj

-82
This file was deleted.
Binary file not shown.

src/GitTools.Core/GitTools.Core.NET40/Properties/AssemblyInfo.cs

-5
This file was deleted.

0 commit comments

Comments
 (0)