Skip to content

Commit

Permalink
Restructure solution
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslan-mogilevskiy committed Jun 5, 2024
1 parent 56913cc commit 63f2675
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

/.localhistory/*
/.vs/*
*/obj/*
*/bin/*
**/obj/*
**/bin/*
*.user
/packages
**/packages
*.nupkg
**/.vshistory/**
**/.vs
23 changes: 14 additions & 9 deletions Resharper.QuickActions.sln
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31129.286
# Visual Studio Version 17
VisualStudioVersion = 17.10.34928.147
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Resharper.QuickActions", "Resharper.QuickActions\Resharper.QuickActions.csproj", "{C472A182-29CD-4733-B556-C8364E5AC780}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Resharper.QuickActions", "src\Resharper.QuickActions\Resharper.QuickActions.csproj", "{C472A182-29CD-4733-B556-C8364E5AC780}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CI", "CI", "{7D9BEE8F-37AD-4E14-861B-B99A3B06BA4F}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0B6E5E2A-B6FB-4108-8FC0-7848F3178EE6}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
LICENSE.md = LICENSE.md
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Nuget", "Nuget", "{502F07B6-6BBF-4323-A9A0-EAF08853DBDE}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{E7B90AF2-69A5-4731-9202-80E3F039C7C2}"
ProjectSection(SolutionItems) = preProject
CI\nuget\pack.cmd = CI\nuget\pack.cmd
CI\nuget\publish.cmd = CI\nuget\publish.cmd
CI\nuget\Resharper.QuickActions.nuspec = CI\nuget\Resharper.QuickActions.nuspec
eng\ci\nuget\pack.cmd = eng\ci\nuget\pack.cmd
eng\ci\nuget\publish.cmd = eng\ci\nuget\publish.cmd
eng\ci\nuget\Resharper.QuickActions.nuspec = eng\ci\nuget\Resharper.QuickActions.nuspec
EndProjectSection
EndProject
Global
Expand All @@ -29,7 +34,7 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{502F07B6-6BBF-4323-A9A0-EAF08853DBDE} = {7D9BEE8F-37AD-4E14-861B-B99A3B06BA4F}
{E7B90AF2-69A5-4731-9202-80E3F039C7C2} = {0B6E5E2A-B6FB-4108-8FC0-7848F3178EE6}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3F3538DF-5EC3-478D-B357-AEF3050F312A}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</dependencies>
</metadata>
<files>
<file src="..\..\Resharper.QuickActions\bin\debug\Rumo.Resharper.QuickActions.dll" target="DotFiles" />
<file src="..\..\Resharper.QuickActions\bin\debug\Rumo.Resharper.QuickActions.pdb" target="DotFiles" />
<file src="..\..\..\src\Resharper.QuickActions\bin\debug\Rumo.Resharper.QuickActions.dll" target="DotFiles" />
<file src="..\..\..\src\Resharper.QuickActions\bin\debug\Rumo.Resharper.QuickActions.pdb" target="DotFiles" />
</files>
</package>
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Rumo.Resharper.QuickActions
{
public static class Constants
static class Constants
{
public class Languages
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
[assembly: AssemblyCompany("Ruslan Mogilevskiy")]
[assembly: AssemblyProduct("Resharper.QuickActions")]
[assembly: AssemblyCopyright("Copyright © Ruslan Mogilevskiy")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
File renamed without changes.
File renamed without changes.

0 comments on commit 63f2675

Please sign in to comment.