Skip to content

Commit c915f6a

Browse files
committed
App.configによるModuleCatalogの構成
1 parent f6bc94c commit c915f6a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3185
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25123.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModuleA", "..\ModuleA\ModuleA.csproj", "{AB8B448C-DD74-4D60-A041-3E5D03A32180}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModuleB", "..\ModuleB\ModuleB.csproj", "{528EEE95-C9CA-4F63-93EB-799C3D1EC4E8}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModuleC", "..\ModuleC\ModuleC.csproj", "{DA5F5BC5-CF28-49EA-B34C-B5A4739208EC}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureModuleCatalogApp", "..\ConfigureModuleCatalogApp\ConfigureModuleCatalogApp.csproj", "{99C9E82C-C594-446D-AA59-8FFBC43AD226}"
13+
EndProject
14+
Global
15+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
16+
Debug|Any CPU = Debug|Any CPU
17+
Release|Any CPU = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20+
{AB8B448C-DD74-4D60-A041-3E5D03A32180}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{AB8B448C-DD74-4D60-A041-3E5D03A32180}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{AB8B448C-DD74-4D60-A041-3E5D03A32180}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{AB8B448C-DD74-4D60-A041-3E5D03A32180}.Release|Any CPU.Build.0 = Release|Any CPU
24+
{528EEE95-C9CA-4F63-93EB-799C3D1EC4E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{528EEE95-C9CA-4F63-93EB-799C3D1EC4E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{528EEE95-C9CA-4F63-93EB-799C3D1EC4E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{528EEE95-C9CA-4F63-93EB-799C3D1EC4E8}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{DA5F5BC5-CF28-49EA-B34C-B5A4739208EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{DA5F5BC5-CF28-49EA-B34C-B5A4739208EC}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{DA5F5BC5-CF28-49EA-B34C-B5A4739208EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{DA5F5BC5-CF28-49EA-B34C-B5A4739208EC}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{99C9E82C-C594-446D-AA59-8FFBC43AD226}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{99C9E82C-C594-446D-AA59-8FFBC43AD226}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{99C9E82C-C594-446D-AA59-8FFBC43AD226}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{99C9E82C-C594-446D-AA59-8FFBC43AD226}.Release|Any CPU.Build.0 = Release|Any CPU
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<configSections>
4+
<section name="modules" type="Prism.Modularity.ModulesConfigurationSection, Prism.Wpf" />
5+
</configSections>
6+
<startup>
7+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
8+
</startup>
9+
<modules>
10+
<module assemblyFile="ModuleA.dll" moduleType="ModuleA.ModuleAModule, ModuleA, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" moduleName="ModuleAModule" startupLoaded="True" />
11+
<module assemblyFile="ModuleB.dll" moduleType="ModuleB.ModuleBModule, ModuleB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" moduleName="ModuleBModule" startupLoaded="True">
12+
<dependencies>
13+
<dependency moduleName="ModuleAModule" />
14+
</dependencies>
15+
</module>
16+
<module assemblyFile="ModuleC.dll" moduleType="ModuleC.ModuleCModule, ModuleC, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" moduleName="ModuleCModule" startupLoaded="False" />
17+
</modules>
18+
</configuration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Application x:Class="ConfigureModuleCatalogApp.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:local="clr-namespace:ConfigureModuleCatalogApp">
5+
<Application.Resources>
6+
7+
</Application.Resources>
8+
</Application>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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;
8+
9+
namespace ConfigureModuleCatalogApp
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
protected override void OnStartup(StartupEventArgs e)
17+
{
18+
base.OnStartup(e);
19+
20+
var bootstrapper = new Bootstrapper();
21+
bootstrapper.Run();
22+
}
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using Microsoft.Practices.Unity;
2+
using Prism.Unity;
3+
using ConfigureModuleCatalogApp.Views;
4+
using System.Windows;
5+
using Prism.Modularity;
6+
7+
namespace ConfigureModuleCatalogApp
8+
{
9+
class Bootstrapper : UnityBootstrapper
10+
{
11+
protected override IModuleCatalog CreateModuleCatalog()
12+
{
13+
return new ConfigurationModuleCatalog();
14+
}
15+
16+
protected override DependencyObject CreateShell()
17+
{
18+
return Container.Resolve<MainWindow>();
19+
}
20+
21+
protected override void InitializeShell()
22+
{
23+
Application.Current.MainWindow.Show();
24+
}
25+
}
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{99C9E82C-C594-446D-AA59-8FFBC43AD226}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>ConfigureModuleCatalogApp</RootNamespace>
11+
<AssemblyName>ConfigureModuleCatalogApp</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15+
<WarningLevel>4</WarningLevel>
16+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19+
<PlatformTarget>AnyCPU</PlatformTarget>
20+
<DebugSymbols>true</DebugSymbols>
21+
<DebugType>full</DebugType>
22+
<Optimize>false</Optimize>
23+
<OutputPath>bin\Debug\</OutputPath>
24+
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
</PropertyGroup>
28+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29+
<PlatformTarget>AnyCPU</PlatformTarget>
30+
<DebugType>pdbonly</DebugType>
31+
<Optimize>true</Optimize>
32+
<OutputPath>bin\Release\</OutputPath>
33+
<DefineConstants>TRACE</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
</PropertyGroup>
37+
<ItemGroup>
38+
<Reference Include="Microsoft.Practices.ServiceLocation, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
39+
<HintPath>..\10.ModuleCatalog\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
40+
<Private>True</Private>
41+
</Reference>
42+
<Reference Include="Microsoft.Practices.Unity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f, processorArchitecture=MSIL">
43+
<HintPath>..\10.ModuleCatalog\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.dll</HintPath>
44+
<Private>True</Private>
45+
</Reference>
46+
<Reference Include="Microsoft.Practices.Unity.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f, processorArchitecture=MSIL">
47+
<HintPath>..\10.ModuleCatalog\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.Configuration.dll</HintPath>
48+
<Private>True</Private>
49+
</Reference>
50+
<Reference Include="Microsoft.Practices.Unity.RegistrationByConvention, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f, processorArchitecture=MSIL">
51+
<HintPath>..\10.ModuleCatalog\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.RegistrationByConvention.dll</HintPath>
52+
<Private>True</Private>
53+
</Reference>
54+
<Reference Include="Prism, Version=6.1.0.0, Culture=neutral, PublicKeyToken=91a96d2a154366d8, processorArchitecture=MSIL">
55+
<HintPath>..\10.ModuleCatalog\packages\Prism.Core.6.1.0\lib\net45\Prism.dll</HintPath>
56+
<Private>True</Private>
57+
</Reference>
58+
<Reference Include="Prism.Unity.Wpf, Version=6.2.0.0, Culture=neutral, PublicKeyToken=91a96d2a154366d8, processorArchitecture=MSIL">
59+
<HintPath>..\10.ModuleCatalog\packages\Prism.Unity.6.2.0-pre3\lib\net45\Prism.Unity.Wpf.dll</HintPath>
60+
<Private>True</Private>
61+
</Reference>
62+
<Reference Include="Prism.Wpf, Version=6.1.0.0, Culture=neutral, PublicKeyToken=91a96d2a154366d8, processorArchitecture=MSIL">
63+
<HintPath>..\10.ModuleCatalog\packages\Prism.Wpf.6.1.1-pre2\lib\net45\Prism.Wpf.dll</HintPath>
64+
<Private>True</Private>
65+
</Reference>
66+
<Reference Include="System" />
67+
<Reference Include="System.Data" />
68+
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
69+
<Reference Include="System.Xml" />
70+
<Reference Include="Microsoft.CSharp" />
71+
<Reference Include="System.Core" />
72+
<Reference Include="System.Xml.Linq" />
73+
<Reference Include="System.Data.DataSetExtensions" />
74+
<Reference Include="System.Net.Http" />
75+
<Reference Include="System.Xaml">
76+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
77+
</Reference>
78+
<Reference Include="WindowsBase" />
79+
<Reference Include="PresentationCore" />
80+
<Reference Include="PresentationFramework" />
81+
</ItemGroup>
82+
<ItemGroup>
83+
<ApplicationDefinition Include="App.xaml">
84+
<Generator>MSBuild:Compile</Generator>
85+
<SubType>Designer</SubType>
86+
</ApplicationDefinition>
87+
<Page Include="Views\MainWindow.xaml">
88+
<Generator>MSBuild:Compile</Generator>
89+
<SubType>Designer</SubType>
90+
</Page>
91+
<Compile Include="App.xaml.cs">
92+
<DependentUpon>App.xaml</DependentUpon>
93+
<SubType>Code</SubType>
94+
</Compile>
95+
<Compile Include="Bootstrapper.cs" />
96+
<Compile Include="ViewModels\MainWindowViewModel.cs" />
97+
<Compile Include="Views\MainWindow.xaml.cs">
98+
<DependentUpon>MainWindow.xaml</DependentUpon>
99+
<SubType>Code</SubType>
100+
</Compile>
101+
</ItemGroup>
102+
<ItemGroup>
103+
<Compile Include="Properties\AssemblyInfo.cs">
104+
<SubType>Code</SubType>
105+
</Compile>
106+
<Compile Include="Properties\Resources.Designer.cs">
107+
<AutoGen>True</AutoGen>
108+
<DesignTime>True</DesignTime>
109+
<DependentUpon>Resources.resx</DependentUpon>
110+
</Compile>
111+
<Compile Include="Properties\Settings.Designer.cs">
112+
<AutoGen>True</AutoGen>
113+
<DependentUpon>Settings.settings</DependentUpon>
114+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
115+
</Compile>
116+
<EmbeddedResource Include="Properties\Resources.resx">
117+
<Generator>ResXFileCodeGenerator</Generator>
118+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
119+
</EmbeddedResource>
120+
<None Include="packages.config" />
121+
<None Include="Properties\Settings.settings">
122+
<Generator>SettingsSingleFileGenerator</Generator>
123+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
124+
</None>
125+
<AppDesigner Include="Properties\" />
126+
</ItemGroup>
127+
<ItemGroup>
128+
<None Include="App.config" />
129+
</ItemGroup>
130+
<ItemGroup>
131+
<ProjectReference Include="..\ModuleA\ModuleA.csproj">
132+
<Project>{ab8b448c-dd74-4d60-a041-3e5d03a32180}</Project>
133+
<Name>ModuleA</Name>
134+
</ProjectReference>
135+
<ProjectReference Include="..\ModuleB\ModuleB.csproj">
136+
<Project>{528eee95-c9ca-4f63-93eb-799c3d1ec4e8}</Project>
137+
<Name>ModuleB</Name>
138+
</ProjectReference>
139+
<ProjectReference Include="..\ModuleC\ModuleC.csproj">
140+
<Project>{da5f5bc5-cf28-49ea-b34c-b5a4739208ec}</Project>
141+
<Name>ModuleC</Name>
142+
</ProjectReference>
143+
</ItemGroup>
144+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
145+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
146+
Other similar extension points exist, see Microsoft.Common.targets.
147+
<Target Name="BeforeBuild">
148+
</Target>
149+
<Target Name="AfterBuild">
150+
</Target>
151+
-->
152+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
using System.Reflection;
2+
using System.Resources;
3+
using System.Runtime.CompilerServices;
4+
using System.Runtime.InteropServices;
5+
using System.Windows;
6+
7+
// General Information about an assembly is controlled through the following
8+
// set of attributes. Change these attribute values to modify the information
9+
// associated with an assembly.
10+
[assembly: AssemblyTitle("ConfigureModuleCatalogApp")]
11+
[assembly: AssemblyDescription("")]
12+
[assembly: AssemblyConfiguration("")]
13+
[assembly: AssemblyCompany("")]
14+
[assembly: AssemblyProduct("ConfigureModuleCatalogApp")]
15+
[assembly: AssemblyCopyright("Copyright © 2016")]
16+
[assembly: AssemblyTrademark("")]
17+
[assembly: AssemblyCulture("")]
18+
19+
// Setting ComVisible to false makes the types in this assembly not visible
20+
// to COM components. If you need to access a type in this assembly from
21+
// COM, set the ComVisible attribute to true on that type.
22+
[assembly: ComVisible(false)]
23+
24+
//In order to begin building localizable applications, set
25+
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
26+
//inside a <PropertyGroup>. For example, if you are using US english
27+
//in your source files, set the <UICulture> to en-US. Then uncomment
28+
//the NeutralResourceLanguage attribute below. Update the "en-US" in
29+
//the line below to match the UICulture setting in the project file.
30+
31+
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
32+
33+
34+
[assembly: ThemeInfo(
35+
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
36+
//(used if a resource is not found in the page,
37+
// or application resource dictionaries)
38+
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
39+
//(used if a resource is not found in the page,
40+
// app, or any theme specific resource dictionaries)
41+
)]
42+
43+
44+
// Version information for an assembly consists of the following four values:
45+
//
46+
// Major Version
47+
// Minor Version
48+
// Build Number
49+
// Revision
50+
//
51+
// You can specify all the values or you can default the Build and Revision Numbers
52+
// by using the '*' as shown below:
53+
// [assembly: AssemblyVersion("1.0.*")]
54+
[assembly: AssemblyVersion("1.0.0.0")]
55+
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)