Skip to content

Commit 33b482a

Browse files
authored
Merge pull request #14 from m-tmatma/feature/RemoveSharedProject
remove shared project
2 parents 83dd79a + 5bbf11b commit 33b482a

18 files changed

+32
-52
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,4 +258,5 @@ paket-files/
258258

259259
# Python Tools for Visual Studio (PTVS)
260260
__pycache__/
261-
*.pyc
261+
*.pyc
262+
/UnitTests/Utility

CreateGUIDVSPlugin.sln

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,9 @@ VisualStudioVersion = 15.0.26403.7
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateGUIDVSPlugin", "CreateGUIDVSPlugin\CreateGUIDVSPlugin.csproj", "{94C76B70-7128-482C-A28A-5D08DD03EC03}"
77
EndProject
8-
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "GuidTools", "GuidTools\GuidTools.shproj", "{28706D78-2119-43C4-B127-FE223516B8F8}"
9-
EndProject
108
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "UnitTests\UnitTests.csproj", "{254E10B0-3326-4DDC-9974-B11C75809641}"
119
EndProject
1210
Global
13-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
14-
GuidTools\GuidTools.projitems*{254e10b0-3326-4ddc-9974-b11c75809641}*SharedItemsImports = 4
15-
GuidTools\GuidTools.projitems*{28706d78-2119-43c4-b127-fe223516b8f8}*SharedItemsImports = 13
16-
GuidTools\GuidTools.projitems*{94c76b70-7128-482c-a28a-5d08dd03ec03}*SharedItemsImports = 4
17-
EndGlobalSection
1811
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1912
Debug|Any CPU = Debug|Any CPU
2013
Release|Any CPU = Release|Any CPU

CreateGUIDVSPlugin/CopyGuidCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Windows.Forms;
66
using Microsoft.VisualStudio.Shell;
77
using Microsoft.VisualStudio.Shell.Interop;
8-
using GuidTools;
8+
using CreateGUIDVSPlugin.Utility;
99

1010
namespace CreateGUIDVSPlugin
1111
{

CreateGUIDVSPlugin/CreateGUIDVSPlugin.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@
6767
</Compile>
6868
<Compile Include="Properties\AssemblyInfo.cs" />
6969
<Compile Include="RenewGuidCommand.cs" />
70+
<Compile Include="Utility\Configuration.cs" />
71+
<Compile Include="Utility\FormatGuid.cs" />
72+
<Compile Include="Utility\ReplaceWithNewGuid.cs" />
73+
<Compile Include="Utility\Template.cs" />
7074
<Compile Include="VSPackage.cs" />
7175
</ItemGroup>
7276
<ItemGroup>
@@ -212,10 +216,10 @@
212216
<ManifestResourceName>VSPackage</ManifestResourceName>
213217
</EmbeddedResource>
214218
</ItemGroup>
219+
<ItemGroup />
215220
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
216221
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
217222
<Import Project="..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets" Condition="Exists('..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" />
218-
<Import Project="..\GuidTools\GuidTools.projitems" Label="Shared" />
219223
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
220224
<PropertyGroup>
221225
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>

CreateGUIDVSPlugin/InsertGuidCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Windows.Forms;
66
using Microsoft.VisualStudio.Shell;
77
using Microsoft.VisualStudio.Shell.Interop;
8-
using GuidTools;
8+
using CreateGUIDVSPlugin.Utility;
99

1010
namespace CreateGUIDVSPlugin
1111
{

CreateGUIDVSPlugin/OptionsControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Text;
88
using System.Threading.Tasks;
99
using System.Windows.Forms;
10-
using GuidTools;
10+
using CreateGUIDVSPlugin.Utility;
1111

1212
namespace CreateGUIDVSPlugin
1313
{

CreateGUIDVSPlugin/RenewGuidCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Globalization;
44
using Microsoft.VisualStudio.Shell;
55
using Microsoft.VisualStudio.Shell.Interop;
6-
using GuidTools;
6+
using CreateGUIDVSPlugin.Utility;
77

88
namespace CreateGUIDVSPlugin
99
{

GuidTools/Configuration.cs renamed to CreateGUIDVSPlugin/Utility/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Reflection;
44
using Microsoft.Win32;
55

6-
namespace GuidTools
6+
namespace CreateGUIDVSPlugin.Utility
77
{
88
/// <summary>
99
/// Configuration and setting manager

GuidTools/FormatGuid.cs renamed to CreateGUIDVSPlugin/Utility/FormatGuid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace GuidTools
3+
namespace CreateGUIDVSPlugin.Utility
44
{
55
/// <summary>
66
/// GUID formatter

GuidTools/ReplaceWithNewGuid.cs renamed to CreateGUIDVSPlugin/Utility/ReplaceWithNewGuid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Text;
44
using System.Text.RegularExpressions;
55

6-
namespace GuidTools
6+
namespace CreateGUIDVSPlugin.Utility
77
{
88
public class ReplaceWithNewGuid
99
{

0 commit comments

Comments
 (0)