-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from TorisanKitsune/CommandModule
Command module
- Loading branch information
Showing
144 changed files
with
254 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
105 changes: 105 additions & 0 deletions
105
Modules/MinoriEditorShell.Command/MinoriEditorShell.Command.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<Description> | ||
MinoriEditorStudio is an application shell similar in concept to the Visual Studio Shell. | ||
It uses AvalonDock and has an MVVM architecture based on MvvmCross. | ||
</Description> | ||
<Copyright>Copyright 2019</Copyright> | ||
<PackageProjectUrl>https://github.com/TorisanKitsune/MinoriEditorShell</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/TorisanKitsune/MinoriEditorShell</RepositoryUrl> | ||
<PackageIconUrl></PackageIconUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>.net40 WPF MvvmCross AvalonDock Visual Studio IDE Shell</PackageTags> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Authors>Mark Kromis</Authors> | ||
<Company>Mark Kromis</Company> | ||
<PackageLicenseExpression></PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Platforms\**\*.cs" /> | ||
<None Include="Platforms\**\*" /> | ||
<None Remove="Platforms\Wpf\Themes\MesThemeBase.cs" /> | ||
|
||
<PackageReference Include="MvvmCross" Version="6.4.1" /> | ||
<PackageReference Include="MvvmCross.Plugin.Messenger" Version="6.4.1" /> | ||
<PackageReference Include="GitVersionTask" Version="5.0.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="MvvmCross.Plugin.ResxLocalization" Version="6.4.1" /> | ||
<PackageReference Include="System.ComponentModel.Composition" Version="4.6.0" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.6.0" /> | ||
<PackageReference Include="System.Drawing.Common" Version="4.6.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) "> | ||
<Compile Include="Platforms\NetStandard\**\*.cs" /> | ||
|
||
<PackageReference Include="System.ComponentModel" Version="4.3.0" /> | ||
<!--<PackageReference Include="System.ComponentModel.Composition" Version="4.6.0" />--> | ||
<PackageReference Include="System.Drawing.Common" Version="4.6.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) "> | ||
<Page Include="Platforms\Wpf\**\*.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
</Page> | ||
<Compile Include="Platforms\Wpf\**\*.cs" /> | ||
|
||
<PackageReference Include="Dirkster.AvalonDock" Version="3.6.0" /> | ||
<PackageReference Include="Dirkster.AvalonDock.Themes.VS2013" Version="3.6.0" /> | ||
<PackageReference Include="MahApps.Metro" Version="1.6.5" /> | ||
<PackageReference Include="MvvmCross.Platforms.Wpf" Version="6.4.1" /> | ||
<PackageReference Include="System.Windows.Interactivity.WPF" Version="2.0.20525" /> | ||
|
||
<Reference Include="PresentationCore" /> | ||
<Reference Include="PresentationFramework" /> | ||
<!--<Reference Include="System.ComponentModel.Composition" />--> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Xaml" /> | ||
<Reference Include="WindowsBase" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\MinoriEditorShell\MinoriEditorShell.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Properties\Settings.settings"> | ||
<Generator>SettingsSingleFileGenerator</Generator> | ||
<LastGenOutput>Settings.Designer.cs</LastGenOutput> | ||
</None> | ||
<Compile Update="Properties\Settings.Designer.cs"> | ||
<DesignTimeSharedInput>True</DesignTimeSharedInput> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Settings.settings</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Properties\Resources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
<EmbeddedResource Update="Properties\Resources.de.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.ko.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.resx"> | ||
<Generator>PublicResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.ru.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.zh-Hans.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
101 changes: 101 additions & 0 deletions
101
Modules/MinoriEditorShell.History/MinoriEditorShell.History.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<Description> | ||
MinoriEditorStudio is an application shell similar in concept to the Visual Studio Shell. | ||
It uses AvalonDock and has an MVVM architecture based on MvvmCross. | ||
</Description> | ||
<Copyright>Copyright 2019</Copyright> | ||
<PackageProjectUrl>https://github.com/TorisanKitsune/MinoriEditorShell</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/TorisanKitsune/MinoriEditorShell</RepositoryUrl> | ||
<PackageIconUrl></PackageIconUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>.net40 WPF MvvmCross AvalonDock Visual Studio IDE Shell</PackageTags> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Authors>Mark Kromis</Authors> | ||
<Company>Mark Kromis</Company> | ||
<PackageLicenseExpression></PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Platforms\**\*.cs" /> | ||
<None Include="Platforms\**\*" /> | ||
<None Remove="Platforms\Wpf\Themes\MesThemeBase.cs" /> | ||
|
||
<PackageReference Include="MvvmCross" Version="6.4.1" /> | ||
<PackageReference Include="MvvmCross.Plugin.Messenger" Version="6.4.1" /> | ||
<PackageReference Include="GitVersionTask" Version="5.0.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="MvvmCross.Plugin.ResxLocalization" Version="6.4.1" /> | ||
<PackageReference Include="System.ComponentModel.Composition" Version="4.6.0" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.6.0" /> | ||
<PackageReference Include="System.Drawing.Common" Version="4.6.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) "> | ||
<Compile Include="Platforms\NetStandard\**\*.cs" /> | ||
|
||
<PackageReference Include="System.ComponentModel" Version="4.3.0" /> | ||
<!--<PackageReference Include="System.ComponentModel.Composition" Version="4.6.0" />--> | ||
<PackageReference Include="System.Drawing.Common" Version="4.6.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) "> | ||
<Page Include="Platforms\Wpf\**\*.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
</Page> | ||
<Compile Include="Platforms\Wpf\**\*.cs" /> | ||
|
||
<PackageReference Include="Dirkster.AvalonDock" Version="3.6.0" /> | ||
<PackageReference Include="Dirkster.AvalonDock.Themes.VS2013" Version="3.6.0" /> | ||
<PackageReference Include="MahApps.Metro" Version="1.6.5" /> | ||
<PackageReference Include="MvvmCross.Platforms.Wpf" Version="6.4.1" /> | ||
<PackageReference Include="System.Windows.Interactivity.WPF" Version="2.0.20525" /> | ||
|
||
<Reference Include="PresentationCore" /> | ||
<Reference Include="PresentationFramework" /> | ||
<!--<Reference Include="System.ComponentModel.Composition" />--> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Xaml" /> | ||
<Reference Include="WindowsBase" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Properties\Settings.settings"> | ||
<Generator>SettingsSingleFileGenerator</Generator> | ||
<LastGenOutput>Settings.Designer.cs</LastGenOutput> | ||
</None> | ||
<Compile Update="Properties\Settings.Designer.cs"> | ||
<DesignTimeSharedInput>True</DesignTimeSharedInput> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Settings.settings</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Properties\Resources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
<EmbeddedResource Update="Properties\Resources.de.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.ko.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.resx"> | ||
<Generator>PublicResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.ru.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Properties\Resources.zh-Hans.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters