Skip to content

Commit 6314d76

Browse files
committed
Updated and renamed to Stride
1 parent da6abee commit 6314d76

23 files changed

+104
-100
lines changed
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30413.136
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XenkoShaderExplorer", "XenkoShaderExplorer\XenkoShaderExplorer.csproj", "{EE2321A0-D100-4569-9E39-A6EBE8737569}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stride.ShaderExplorer", "Stride.ShaderExplorer\Stride.ShaderExplorer.csproj", "{EE2321A0-D100-4569-9E39-A6EBE8737569}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AurelienRibon.Ui.SyntaxHighlightBox", "SyntaxHighlightBox\AurelienRibon.Ui.SyntaxHighlightBox\AurelienRibon.Ui.SyntaxHighlightBox.csproj", "{10A9ECD3-AE1E-494D-9A27-8A32DD581759}"
99
EndProject
@@ -25,4 +25,7 @@ Global
2525
GlobalSection(SolutionProperties) = preSolution
2626
HideSolutionNode = FALSE
2727
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {AD0D3404-312B-4182-B34B-FE2D0945198C}
30+
EndGlobalSection
2831
EndGlobal
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="XenkoShaderExplorer.App"
1+
<Application x:Class="StrideShaderExplorer.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:XenkoShaderExplorer"
4+
xmlns:local="clr-namespace:StrideShaderExplorer"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using System.Windows;
88

9-
namespace XenkoShaderExplorer
9+
namespace StrideShaderExplorer
1010
{
1111
/// <summary>
1212
/// Interaktionslogik für "App.xaml"
File renamed without changes.

XenkoShaderExplorer/Assets/XenkoShaderExplorerLogo.ico renamed to Stride.ShaderExplorer/Assets/StrideShaderExplorerLogo.ico

File renamed without changes.

XenkoShaderExplorer/Assets/XenkoShaderExplorerLogo.png renamed to Stride.ShaderExplorer/Assets/XenkoShaderExplorerLogo.png

File renamed without changes.

XenkoShaderExplorer/BoolToBrushConverter.cs renamed to Stride.ShaderExplorer/BoolToBrushConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Windows.Data;
44
using System.Windows.Media;
55

6-
namespace XenkoShaderExplorer
6+
namespace StrideShaderExplorer
77
{
88
public class BoolToBrushConverter : IValueConverter
99
{

XenkoShaderExplorer/HyperlinkExtensions.cs renamed to Stride.ShaderExplorer/HyperlinkExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Windows;
33
using System.Windows.Documents;
44

5-
namespace XenkoShaderExplorer
5+
namespace StrideShaderExplorer
66
{
77
// Taken from http://stackoverflow.com/a/11433814
88
public static class HyperlinkExtensions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<Window x:Class="XenkoShaderExplorer.InfoWindow"
1+
<Window x:Class="StrideShaderExplorer.InfoWindow"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:XenkoShaderExplorer"
7-
Icon="Assets\XenkoShaderExplorerLogo.ico"
6+
xmlns:local="clr-namespace:StrideShaderExplorer"
7+
Icon="Assets\StrideShaderExplorerLogo.ico"
88
mc:Ignorable="d"
99
Foreground="White"
1010
Title="Info" Height="200" Width="300"

0 commit comments

Comments
 (0)