Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<StartAction>Program</StartAction>
<StartProgram>$(DevEnvDir)devenv.exe</StartProgram>
<StartArguments>/rootSuffix Exp</StartArguments>
</PropertyGroup>

<ItemGroup>
Expand All @@ -29,4 +32,8 @@
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
</ItemGroup>

<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"profiles": {
"Debug Extension w/2026": {
"Debug Extension": {
"commandName": "Executable",
"executablePath": "C:\\Program Files\\Microsoft Visual Studio\\18\\Community\\Common7\\IDE\\devenv.exe",
"executablePath": "C:\\Program Files\\Microsoft Visual Studio\\18\\Preview\\Common7\\IDE\\devenv.exe",
"commandLineArgs": "/rootSuffix Exp"
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/CodingWithCalvin.LaunchyBar/UI/LaunchyBarControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:vs="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.15.0"
xmlns:imaging="clr-namespace:Microsoft.VisualStudio.Imaging;assembly=Microsoft.VisualStudio.Imaging"
mc:Ignorable="d"
mc:Ignorable="d"
d:DesignHeight="600" d:DesignWidth="48"
Background="#FF2D2D30">
Background="{DynamicResource {x:Static vs:VsBrushes.ToolWindowBackgroundKey}}">

<UserControl.Resources>
<Style x:Key="LaunchyBarButtonStyle" TargetType="Button">
Expand Down
Loading