Skip to content

Commit 6606eeb

Browse files
committed
Update protobuf-net to 2.1.0-alpha-1
1 parent f24f7dc commit 6606eeb

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

build.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ let solution =
2020
("Newtonsoft.Json", "") ] }
2121
{ emptyProject with Name = "TemplateTable.Protobuf"
2222
Folder = "./plugins/TemplateTable.Protobuf"
23+
PackagePrerelease = "beta"
2324
Dependencies =
2425
[ ("TemplateTable", "")
2526
("protobuf-net", "") ] } ]

plugins/TemplateTable.Protobuf.Net35/TemplateTable.Protobuf.Net35.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737
<Private>True</Private>
3838
</Reference>
3939
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
40-
<HintPath>..\..\packages\protobuf-net.2.0.0.668\lib\net35\protobuf-net.dll</HintPath>
41-
<Private>True</Private>
40+
<HintPath>..\..\packages\protobuf-net.2.1.0-alpha-1\lib\net30\protobuf-net.dll</HintPath>
4241
</Reference>
4342
<Reference Include="System" />
4443
<Reference Include="System.Core" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="NetLegacySupport.Tuple" version="1.1.1" targetFramework="net35" />
4-
<package id="protobuf-net" version="2.0.0.668" targetFramework="net35" />
4+
<package id="protobuf-net" version="2.1.0-alpha-1" targetFramework="net35" />
55
<package id="StyleCop.Analyzers" version="1.0.0" targetFramework="net35" developmentDependency="true" />
66
</packages>

plugins/TemplateTable.Protobuf.Tests/TemplateTable.Protobuf.Tests.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
</PropertyGroup>
3939
<ItemGroup>
4040
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
41-
<HintPath>..\..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
42-
<Private>True</Private>
41+
<HintPath>..\..\packages\protobuf-net.2.1.0-alpha-1\lib\net45\protobuf-net.dll</HintPath>
4342
</Reference>
4443
<Reference Include="System" />
4544
<Reference Include="System.ComponentModel.Composition" />

plugins/TemplateTable.Protobuf.Tests/packages.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packages>
33
<package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="net452" />
44
<package id="NETStandard.Library" version="1.6.1" targetFramework="net452" />
5-
<package id="protobuf-net" version="2.0.0.668" targetFramework="net45" />
5+
<package id="protobuf-net" version="2.1.0-alpha-1" targetFramework="net452" />
66
<package id="StyleCop.Analyzers" version="1.0.0" targetFramework="net45" developmentDependency="true" />
77
<package id="System.Collections" version="4.3.0" targetFramework="net452" />
88
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net452" />
@@ -18,6 +18,7 @@
1818
<package id="System.Net.Primitives" version="4.3.0" targetFramework="net452" />
1919
<package id="System.ObjectModel" version="4.3.0" targetFramework="net452" />
2020
<package id="System.Reflection" version="4.3.0" targetFramework="net452" />
21+
<package id="System.Reflection.Emit" version="4.3.0" targetFramework="net452" />
2122
<package id="System.Reflection.Extensions" version="4.3.0" targetFramework="net452" />
2223
<package id="System.Reflection.Primitives" version="4.3.0" targetFramework="net452" />
2324
<package id="System.Resources.ResourceManager" version="4.3.0" targetFramework="net452" />

plugins/TemplateTable.Protobuf/TemplateTable.Protobuf.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
37-
<HintPath>..\..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
38-
<Private>True</Private>
37+
<HintPath>..\..\packages\protobuf-net.2.1.0-alpha-1\lib\net45\protobuf-net.dll</HintPath>
3938
</Reference>
4039
<Reference Include="System" />
4140
<Reference Include="System.Core" />
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="protobuf-net" version="2.0.0.668" targetFramework="net45" />
3+
<package id="protobuf-net" version="2.1.0-alpha-1" targetFramework="net452" />
44
<package id="StyleCop.Analyzers" version="1.0.0" targetFramework="net45" developmentDependency="true" />
5+
<package id="System.Reflection.Emit" version="4.3.0" targetFramework="net452" />
56
</packages>

samples/Basic/Basic.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@
4040
<Private>True</Private>
4141
</Reference>
4242
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
43-
<HintPath>..\..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
44-
<Private>True</Private>
43+
<HintPath>..\..\packages\protobuf-net.2.1.0-alpha-1\lib\net45\protobuf-net.dll</HintPath>
4544
</Reference>
4645
<Reference Include="System" />
4746
<Reference Include="System.Core" />

samples/Basic/packages.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
4-
<package id="protobuf-net" version="2.0.0.668" targetFramework="net45" />
4+
<package id="protobuf-net" version="2.1.0-alpha-1" targetFramework="net452" />
55
<package id="StyleCop.Analyzers" version="1.0.0" targetFramework="net45" developmentDependency="true" />
6+
<package id="System.Reflection.Emit" version="4.3.0" targetFramework="net452" />
67
</packages>

0 commit comments

Comments
 (0)