Skip to content

Commit

Permalink
Add CrashReport to Stride.Launcher.sln
Browse files Browse the repository at this point in the history
  • Loading branch information
Jklawreszuk committed Sep 10, 2024
1 parent 519bae9 commit e220654
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sources/editor/Stride.Editor.CrashReport/CrashReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ namespace Stride.Editor.CrashReport;

internal static class CrashReporter
{
private const string url = "https://github.com/stride3d/stride/issues/new?labels=bug&template=bug_report.md&";

internal static void OpenGithub()
{
string url = "https://github.com/stride3d/stride/issues/new?labels=bug&template=bug_report.md&";

Process browser = new();
browser.StartInfo.UseShellExecute = true;
browser.StartInfo.FileName = url;
Expand Down
2 changes: 1 addition & 1 deletion sources/launcher/Stride.Launcher/Stride.Launcher.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\shared\Stride.Core.ShellHelper\Stride.Core.ShellHelper.projitems" Label="Shared" />
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
Expand Down Expand Up @@ -101,7 +102,6 @@
<ProjectReference Include="..\..\core\Stride.Core\Stride.Core.csproj" />
<ProjectReference Include="..\..\presentation\Stride.Core.Presentation\Stride.Core.Presentation.csproj" />
<ProjectReference Include="..\..\presentation\Stride.Core.Presentation.Dialogs\Stride.Core.Presentation.Dialogs.csproj" />
<ProjectReference Include="..\..\editor\Stride.Editor.CrashReport\Stride.Editor.CrashReport.csproj"/>
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
Expand Down

0 comments on commit e220654

Please sign in to comment.