Skip to content

Commit 8cc7e0a

Browse files
Moved MainWindow into View-Folder
1 parent 24da083 commit 8cc7e0a

5 files changed

Lines changed: 7 additions & 13 deletions

File tree

EventHub.RestClientGenerator/App.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Application x:Class="EventHub.RestClientGenerator.App"
1+
<Application x:Class="ThomasClaudiusHuber.Azure.EventHub.RestClientGenerator.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:local="clr-namespace:EventHub.RestClientGenerator"

EventHub.RestClientGenerator/App.xaml.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Configuration;
4-
using System.Data;
5-
using System.Linq;
6-
using System.Threading.Tasks;
7-
using System.Windows;
1+
using System.Windows;
82

9-
namespace EventHub.RestClientGenerator
3+
namespace ThomasClaudiusHuber.Azure.EventHub.RestClientGenerator
104
{
115
/// <summary>
126
/// Interaction logic for App.xaml

EventHub.RestClientGenerator/EventHub.RestClientGenerator.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@
8181
<Compile Include="View\UwpOutputView.xaml.cs">
8282
<DependentUpon>UwpOutputView.xaml</DependentUpon>
8383
</Compile>
84-
<Page Include="MainWindow.xaml">
84+
<Page Include="View\MainWindow.xaml">
8585
<Generator>MSBuild:Compile</Generator>
8686
<SubType>Designer</SubType>
8787
</Page>
8888
<Compile Include="App.xaml.cs">
8989
<DependentUpon>App.xaml</DependentUpon>
9090
<SubType>Code</SubType>
9191
</Compile>
92-
<Compile Include="MainWindow.xaml.cs">
92+
<Compile Include="View\MainWindow.xaml.cs">
9393
<DependentUpon>MainWindow.xaml</DependentUpon>
9494
<SubType>Code</SubType>
9595
</Compile>

EventHub.RestClientGenerator/MainWindow.xaml renamed to EventHub.RestClientGenerator/View/MainWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Window x:Class="EventHub.RestClientGenerator.MainWindow"
1+
<Window x:Class="ThomasClaudiusHuber.Azure.EventHub.RestClientGenerator.View.MainWindow"
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"

EventHub.RestClientGenerator/MainWindow.xaml.cs renamed to EventHub.RestClientGenerator/View/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Windows;
22
using ThomasClaudiusHuber.Azure.EventHub.RestClientGenerator.ViewModel;
33

4-
namespace EventHub.RestClientGenerator
4+
namespace ThomasClaudiusHuber.Azure.EventHub.RestClientGenerator.View
55
{
66
/// <summary>
77
/// Interaction logic for MainWindow.xaml

0 commit comments

Comments
 (0)