Skip to content

Commit

Permalink
fix cmd flashing on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
davidegiacometti committed Aug 3, 2023
1 parent 0b02324 commit 1be5a69
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
7 changes: 6 additions & 1 deletion Community.PowerToys.Run.Plugin.VisualStudio.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33516.290
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Community.PowerToys.Run.Plugin.VisualStudio", "Community.PowerToys.Run.Plugin.VisualStudio/Community.PowerToys.Run.Plugin.VisualStudio.csproj", "{59418FCB-BD51-4002-ABAB-3AFE7E516E1F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.VisualStudio", "Community.PowerToys.Run.Plugin.VisualStudio\Community.PowerToys.Run.Plugin.VisualStudio.csproj", "{59418FCB-BD51-4002-ABAB-3AFE7E516E1F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5A46379E-C265-4F87-8F4C-E60F4F655906}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,4 @@
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.507">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public void InitInstances()
{
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true,
};

using var process = Process.Start(startInfo);
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>0.0.2</Version>
<Version>0.0.3</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -9,7 +9,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 1be5a69

Please sign in to comment.