Skip to content

Commit 30671ed

Browse files
committed
updated logo and changed back to SuessLabs
1 parent bad51ec commit 30671ed

5 files changed

Lines changed: 14 additions & 9 deletions

File tree

src/VsLinuxDebugger/Commands.Impl.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
namespace VsLinuxDebugger
77
{
8+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "VSTHRD100:Avoid async void methods", Justification = "Its annoying")]
9+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "VSTHRD200:Avoid async void methods", Justification = "Its annoying")]
810
internal sealed partial class Commands
911
{
1012
/// <summary>Override standard button text with.</summary>
@@ -58,8 +60,6 @@ private void CreateVsMenu(OleMenuCommandService cmd)
5860
AddMenuItem(cmd, CommandIds.CmdShowSettings, SetMenuTextAndVisibility, OnShowSettingsAsync);
5961
}
6062

61-
[System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "VSTHRD100:Avoid async void methods", Justification = "asdf")]
62-
[System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "VSTHRD200:Avoid async void methods", Justification = "asdf")]
6363
private async void OnDebugOnlyAsync(object sender, EventArgs e)
6464
{
6565
await ExecuteBuildAsync(BuildOptions.Build | BuildOptions.Debug);

src/VsLinuxDebugger/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("1.0.0.0")]
33-
[assembly: AssemblyFileVersion("1.0.0.0")]
32+
[assembly: AssemblyVersion("1.0.1.0")]
33+
[assembly: AssemblyFileVersion("1.0.1.0")]
66.8 KB
Loading

src/VsLinuxDebugger/VsLinuxDebugger.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
<DebugSymbols>true</DebugSymbols>
3232
<DebugType>full</DebugType>
3333
<Optimize>false</Optimize>
34-
<OutputPath>bin\Debug\</OutputPath>
34+
<OutputPath>..\..\output\Debug\</OutputPath>
3535
<DefineConstants>DEBUG;TRACE</DefineConstants>
3636
<ErrorReport>prompt</ErrorReport>
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4040
<DebugType>pdbonly</DebugType>
4141
<Optimize>true</Optimize>
42-
<OutputPath>bin\Release\</OutputPath>
42+
<OutputPath>..\..\output\Release\</OutputPath>
4343
<DefineConstants>TRACE</DefineConstants>
4444
<ErrorReport>prompt</ErrorReport>
4545
<WarningLevel>4</WarningLevel>
@@ -114,6 +114,10 @@
114114
<Content Include="Resources\SshDebugCommand.png">
115115
<IncludeInVSIX>true</IncludeInVSIX>
116116
</Content>
117+
<Content Include="Resources\TuxDebug.png">
118+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
119+
<IncludeInVSIX>true</IncludeInVSIX>
120+
</Content>
117121
</ItemGroup>
118122
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
119123
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />

src/VsLinuxDebugger/source.extension.vsixmanifest

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="VsLinuxDebugger.4d7bf4de-5015-4e24-92c0-7f9f3397b2da" Version="1.0" Language="en-US" Publisher="Xeno Innovations" />
4+
<Identity Id="VsLinuxDebugger.4d7bf4de-5015-4e24-92c0-7f9f3397b2da" Version="1.0.1" Language="en-US" Publisher="Suess Labs" />
55
<DisplayName>VsLinuxDebugger</DisplayName>
6-
<Description xml:space="preserve">Visual Studio 2022 Remote Linux Debugger.</Description>
6+
<Description xml:space="preserve">Visual Studio 2022 Remote Linux Debugger</Description>
7+
<MoreInfo>https://github.com/SuessLabs/VsLinuxDebug</MoreInfo>
78
<License>LICENSE.txt</License>
8-
<Icon>Resources\DebuggerPackage.ico</Icon>
9+
<Icon>Resources\TuxDebug.png</Icon>
910
<Tags>debug; build; remote debug; vsdbg; linux; xamarin; rpi4; remotedebug; linux debug; net6; dotnet</Tags>
1011
</Metadata>
1112
<Installation>

0 commit comments

Comments
 (0)