Skip to content

Commit 4dc7351

Browse files
Merge pull request #746 from rockfordlhotka/745-serialization
Fix UWP serialization
2 parents 836f51e + 3f628e9 commit 4dc7351

File tree

45 files changed

+252
-130
lines changed

Some content is hidden

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

45 files changed

+252
-130
lines changed

NuGet/Definition/Core.NuSpec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,19 @@ Supports the creation of Class Library projects containing business domain class
2828
<dependency id="Microsoft.Net.Http" version="2.2.28" />
2929
</group>
3030
<group targetFramework="uap10.0">
31-
<dependency id="System.Collections" version="4.0.10" />
31+
<dependency id="System.Collections" version="4.3.0" />
3232
<dependency id="System.ComponentModel.Annotations" version="4.0.10" />
3333
<dependency id="System.Diagnostics.Debug" version="4.0.10" />
3434
<dependency id="System.Linq" version="4.0.0" />
3535
<dependency id="System.Linq.Expressions" version="4.0.10" />
3636
<dependency id="System.ObjectModel" version="4.0.10" />
37-
<dependency id="System.Reflection" version="4.0.10" />
37+
<dependency id="System.Reflection" version="4.3.0" />
3838
<dependency id="System.Reflection.TypeExtensions" version="4.0.0" />
39-
<dependency id="System.Runtime" version="4.0.20" />
39+
<dependency id="System.Runtime" version="4.3.0" />
4040
<dependency id="System.Runtime.InteropServices.WindowsRuntime" version="4.0.0" />
4141
<dependency id="System.Threading" version="4.0.10" />
4242
<dependency id="System.Threading.Tasks" version="4.0.10" />
43+
<dependency id="System.Runtime.Serialization.Formatters" version="4.3.0" />
4344
</group>
4445
<group targetFramework="netstandard1.5">
4546
<dependency id="NETStandard.Library" version="1.5.0" />

Source/Csla.Analyzers/Csla.Analyzers/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
[assembly: AssemblyCulture("")]
1212
[assembly: InternalsVisibleTo("Csla.Analyzers.Tests")]
1313

14-
[assembly: AssemblyVersion("4.6.602.0")]
15-
[assembly: AssemblyFileVersion("4.6.602.0")]
14+
[assembly: AssemblyVersion("4.6.603.0")]
15+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Android/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("4.6.602.0")]
33-
[assembly: AssemblyFileVersion("4.6.602.0")]
32+
[assembly: AssemblyVersion("4.6.603.0")]
33+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Axml.Android/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
// You can specify all the values or you can default the Build and Revision Numbers
2525
// by using the '*' as shown below:
2626
// [assembly: AssemblyVersion("1.0.*")]
27-
[assembly: AssemblyVersion("4.6.602.0")]
28-
[assembly: AssemblyFileVersion("4.6.602.0")]
27+
[assembly: AssemblyVersion("4.6.603.0")]
28+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Data.EF4.Net4.5/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("4.6.602.0")]
35-
[assembly: AssemblyFileVersion("4.6.602.0")]
34+
[assembly: AssemblyVersion("4.6.603.0")]
35+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Data.EF4.Net4.6/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("4.6.602.0")]
36-
[assembly: AssemblyFileVersion("4.6.602.0")]
35+
[assembly: AssemblyVersion("4.6.603.0")]
36+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Data.EF4.Net4/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
//
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
35-
[assembly: AssemblyVersion("4.6.602.0")]
36-
[assembly: AssemblyFileVersion("4.6.602.0")]
35+
[assembly: AssemblyVersion("4.6.603.0")]
36+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Data.EF5.Net4.5/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("4.6.602.0")]
35-
[assembly: AssemblyFileVersion("4.6.602.0")]
34+
[assembly: AssemblyVersion("4.6.603.0")]
35+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Data.EF5.Net4.6/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("4.6.602.0")]
36-
[assembly: AssemblyFileVersion("4.6.602.0")]
35+
[assembly: AssemblyVersion("4.6.603.0")]
36+
[assembly: AssemblyFileVersion("4.6.603.0")]

Source/Csla.Data.EF5.Net4/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("4.6.602.0")]
35-
[assembly: AssemblyFileVersion("4.6.602.0")]
34+
[assembly: AssemblyVersion("4.6.603.0")]
35+
[assembly: AssemblyFileVersion("4.6.603.0")]

0 commit comments

Comments
 (0)