Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move VSBranchInfo to the dotnet tool, and add Razor support #1185

Merged
merged 9 commits into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions RoslynTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PRFinder", "src\RoslynInser
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateTagsForVSRelease", "src\CreateTagsForVSRelease\CreateTagsForVSRelease.csproj", "{08AAEF36-C81B-4BAE-8172-EA0D3139B0BE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VSBranchInfo", "src\VSBranchInfo\VSBranchInfo.csproj", "{D10CCD63-A7F6-4310-81AA-0D00526320D1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NugetDependencyFinder", "src\NugetDependencyFinder\NugetDependencyFinder.csproj", "{7A6963D6-1F40-4CC6-9941-7F912252F877}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dotnet-roslyn", "dotnet-roslyn", "{C68033E0-FB8F-4327-BFB5-B340A5A7778F}"
Expand Down Expand Up @@ -362,18 +360,6 @@ Global
{08AAEF36-C81B-4BAE-8172-EA0D3139B0BE}.Release|x64.Build.0 = Release|Any CPU
{08AAEF36-C81B-4BAE-8172-EA0D3139B0BE}.Release|x86.ActiveCfg = Release|Any CPU
{08AAEF36-C81B-4BAE-8172-EA0D3139B0BE}.Release|x86.Build.0 = Release|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Debug|x64.ActiveCfg = Debug|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Debug|x64.Build.0 = Debug|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Debug|x86.ActiveCfg = Debug|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Debug|x86.Build.0 = Debug|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Release|Any CPU.Build.0 = Release|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Release|x64.ActiveCfg = Release|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Release|x64.Build.0 = Release|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Release|x86.ActiveCfg = Release|Any CPU
{D10CCD63-A7F6-4310-81AA-0D00526320D1}.Release|x86.Build.0 = Release|Any CPU
{7A6963D6-1F40-4CC6-9941-7F912252F877}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7A6963D6-1F40-4CC6-9941-7F912252F877}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7A6963D6-1F40-4CC6-9941-7F912252F877}.Debug|x64.ActiveCfg = Debug|Any CPU
Expand Down
1 change: 1 addition & 0 deletions eng/Signing.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<!-- Sign 3rd party dlls with 3rd party cert -->
<FileSignInfo Include="Newtonsoft.Json.dll" CertificateName="3PartySHA2" />
<FileSignInfo Include="Newtonsoft.Json.Bson.dll" CertificateName="3PartySHA2" />
<FileSignInfo Include="Ben.Demystifier.dll" CertificateName="3PartySHA2" />
<FileSignInfo Include="Colorful.Console.dll" CertificateName="3PartySHA2" />
</ItemGroup>
Expand Down
60 changes: 0 additions & 60 deletions src/VSBranchInfo/AzDOConnection.cs

This file was deleted.

243 changes: 0 additions & 243 deletions src/VSBranchInfo/Program.cs

This file was deleted.

16 changes: 0 additions & 16 deletions src/VSBranchInfo/README.md

This file was deleted.

17 changes: 0 additions & 17 deletions src/VSBranchInfo/VSBranchInfo.csproj

This file was deleted.

1 change: 1 addition & 0 deletions src/dotnet-roslyn/Commands/RootRoslynCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ internal static class RootRoslynCommand
PRFinderCommand.GetCommand(),
NuGetPrepareCommand.GetCommand(),
NuGetPublishCommand.GetCommand(),
VSBranchInfoCommand.GetCommand()
};
}
Loading