Skip to content

Commit 7ac1df8

Browse files
author
Mathias Colpaert
committedFeb 12, 2018
migrate to netstandard2.0
1 parent a3b8e22 commit 7ac1df8

File tree

77 files changed

+451
-698
lines changed

Some content is hidden

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

77 files changed

+451
-698
lines changed
 

‎Example.BusinessApp.Infrastructure/Example.BusinessApp.Infrastructure.csproj

+17-16
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>Example.BusinessApp.Infrastructure</RootNamespace>
1111
<AssemblyName>Example.BusinessApp.Infrastructure</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1515
<WarningLevel>4</WarningLevel>
@@ -33,26 +33,26 @@
3333
<WarningLevel>4</WarningLevel>
3434
</PropertyGroup>
3535
<ItemGroup>
36-
<Reference Include="Autofac, Version=3.5.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
37-
<HintPath>..\packages\Autofac.3.5.2\lib\net40\Autofac.dll</HintPath>
38-
<Private>True</Private>
36+
<Reference Include="Autofac, Version=4.6.2.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
37+
<HintPath>..\packages\Autofac.4.6.2\lib\net45\Autofac.dll</HintPath>
3938
</Reference>
40-
<Reference Include="Microsoft.Practices.ServiceLocation, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
41-
<HintPath>..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
42-
<Private>True</Private>
39+
<Reference Include="CommonServiceLocator, Version=2.0.2.0, Culture=neutral, PublicKeyToken=489b6accfaf20ef0, processorArchitecture=MSIL">
40+
<HintPath>..\packages\CommonServiceLocator.2.0.2\lib\net45\CommonServiceLocator.dll</HintPath>
4341
</Reference>
44-
<Reference Include="Prism, Version=6.2.0.0, Culture=neutral, PublicKeyToken=91a96d2a154366d8, processorArchitecture=MSIL">
45-
<HintPath>..\packages\Prism.Core.6.2.0\lib\net45\Prism.dll</HintPath>
46-
<Private>True</Private>
42+
<Reference Include="Prism, Version=7.0.0.396, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
43+
<HintPath>..\packages\Prism.Core.7.0.0.396\lib\net45\Prism.dll</HintPath>
4744
</Reference>
48-
<Reference Include="Prism.Wpf, Version=6.2.0.0, Culture=neutral, PublicKeyToken=91a96d2a154366d8, processorArchitecture=MSIL">
49-
<HintPath>..\packages\Prism.Wpf.6.2.0\lib\net45\Prism.Wpf.dll</HintPath>
50-
<Private>True</Private>
45+
<Reference Include="Prism.Wpf, Version=6.3.0.0, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
46+
<HintPath>..\packages\Prism.Wpf.6.3.0\lib\net45\Prism.Wpf.dll</HintPath>
5147
</Reference>
5248
<Reference Include="System" />
5349
<Reference Include="System.Data" />
50+
<Reference Include="System.Drawing" />
51+
<Reference Include="System.IO.Compression.FileSystem" />
52+
<Reference Include="System.Numerics" />
53+
<Reference Include="System.Runtime.Serialization" />
5454
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
55-
<HintPath>..\packages\Prism.Wpf.6.2.0\lib\net45\System.Windows.Interactivity.dll</HintPath>
55+
<HintPath>..\packages\Prism.Wpf.6.3.0\lib\net45\System.Windows.Interactivity.dll</HintPath>
5656
<Private>True</Private>
5757
</Reference>
5858
<Reference Include="System.Xml" />
@@ -110,6 +110,7 @@
110110
<Generator>ResXFileCodeGenerator</Generator>
111111
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
112112
</EmbeddedResource>
113+
<None Include="app.config" />
113114
<None Include="packages.config" />
114115
<None Include="Properties\Settings.settings">
115116
<Generator>SettingsSingleFileGenerator</Generator>
@@ -128,9 +129,9 @@
128129
</Page>
129130
</ItemGroup>
130131
<ItemGroup>
131-
<ProjectReference Include="..\Matisco.Domain\Matisco.Domain.csproj">
132+
<ProjectReference Include="..\Matisco.Domain\Matisco.Core.csproj">
132133
<Project>{2B8C7E70-4BB7-4959-8E06-78C021379DA2}</Project>
133-
<Name>Matisco.Domain</Name>
134+
<Name>Matisco.Core</Name>
134135
</ProjectReference>
135136
<ProjectReference Include="..\Matisco.Wpf.Controls\Matisco.Wpf.Controls.csproj">
136137
<Project>{ccd09ed5-5267-4d08-9328-3e86487ca8d8}</Project>

‎Example.BusinessApp.Infrastructure/Properties/Resources.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.