Skip to content

Commit a1490f5

Browse files
committed
Move everything to 4.71
1 parent 11dc647 commit a1490f5

File tree

11 files changed

+31
-31
lines changed

11 files changed

+31
-31
lines changed

Examples/ExampleObjectDetection/ExampleObjectDetection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<Reference Include="System.IO.Compression" />
4747
<Reference Include="System.IO.Compression.FileSystem" />
4848
<Reference Include="System.ValueTuple, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
49-
<HintPath>..\..\packages\System.ValueTuple.4.4.0\lib\net461\System.ValueTuple.dll</HintPath>
49+
<HintPath>..\..\packages\System.ValueTuple.4.4.0\lib\net471\System.ValueTuple.dll</HintPath>
5050
</Reference>
5151
<Reference Include="System.Xml.Linq" />
5252
<Reference Include="System.Data.DataSetExtensions" />
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Mono.Options" version="5.3.0.1" targetFramework="net461" />
4-
<package id="SharpZipLib" version="0.86.0" targetFramework="net461" />
5-
<package id="System.ValueTuple" version="4.4.0" targetFramework="net461" />
3+
<package id="Mono.Options" version="5.3.0.1" targetFramework="net471" />
4+
<package id="SharpZipLib" version="0.86.0" targetFramework="net471" />
5+
<package id="System.ValueTuple" version="4.4.0" targetFramework="net471" />
66
</packages>

Learn/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="System.ValueTuple" version="4.3.1" targetFramework="net461" />
3+
<package id="System.ValueTuple" version="4.3.1" targetFramework="net471" />
44
</packages>

OpGenerator/packages.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Google.Protobuf" version="3.4.1" targetFramework="net461" />
4-
<package id="Google.Protobuf.Tools" version="3.4.0" targetFramework="net461" />
5-
<package id="protobuf-net" version="2.3.2" targetFramework="net461" />
3+
<package id="Google.Protobuf" version="3.4.1" targetFramework="net471" />
4+
<package id="Google.Protobuf.Tools" version="3.4.0" targetFramework="net471" />
5+
<package id="protobuf-net" version="2.3.2" targetFramework="net471" />
66
</packages>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ using (var session = new TFSession())
9494
Here is an F# scripting version of the same example, you can use this in F# Interactive:
9595

9696
```fsharp
97-
#r @"packages\TensorFlowSharp.1.4.0\lib\net461\TensorFlowSharp.dll"
97+
#r @"packages\TensorFlowSharp.1.4.0\lib\net471\TensorFlowSharp.dll"
9898
9999
open System
100100
open System.IO

SampleTest/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="CsvHelper" version="2.16.3.0" targetFramework="net45" />
4-
<package id="System.ValueTuple" version="4.3.1" targetFramework="net461" />
4+
<package id="System.ValueTuple" version="4.3.1" targetFramework="net471" />
55
</packages>

TensorFlowSharp/TensorFlowSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>net471;netstandard2.0</TargetFrameworks>
55
<RootNamespace>TensorFlowSharp</RootNamespace>
66
<AssemblyName>TensorFlowSharp</AssemblyName>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

docfx/articles/start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ using (var session = new TFSession())
9494
Here is an F# scripting version of the same example, you can use this in F# Interactive:
9595

9696
```
97-
#r @"packages\TensorFlowSharp.1.4.0\lib\net461\TensorFlowSharp.dll"
97+
#r @"packages\TensorFlowSharp.1.4.0\lib\net471\TensorFlowSharp.dll"
9898
9999
open System
100100
open System.IO

docs/articles/start.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ <h1 id="getting-started">Getting started</h1>
137137
Console.WriteLine(&quot;a*b={0}&quot;, multiplyResultValue);
138138
}
139139
</code></pre><p>Here is an F# scripting version of the same example, you can use this in F# Interactive:</p>
140-
<pre><code>#r @&quot;packages\TensorFlowSharp.1.4.0\lib\net461\TensorFlowSharp.dll&quot;
140+
<pre><code>#r @&quot;packages\TensorFlowSharp.1.4.0\lib\net471\TensorFlowSharp.dll&quot;
141141

142142
open System
143143
open System.IO
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.DotNet.InternalAbstractions" version="1.0.500-preview2-1-003177" targetFramework="net461" />
4-
<package id="Microsoft.TestPlatform.TestHost" version="15.3.0" targetFramework="net461" />
5-
<package id="System.ValueTuple" version="4.3.1" targetFramework="net461" />
6-
<package id="xunit" version="2.2.0" targetFramework="net461" />
7-
<package id="xunit.abstractions" version="2.0.1" targetFramework="net461" />
8-
<package id="xunit.assert" version="2.2.0" targetFramework="net461" />
9-
<package id="xunit.core" version="2.2.0" targetFramework="net461" />
10-
<package id="xunit.extensibility.core" version="2.2.0" targetFramework="net461" />
11-
<package id="xunit.extensibility.execution" version="2.2.0" targetFramework="net461" />
12-
<package id="xunit.runner.console" version="2.2.0" targetFramework="net461" developmentDependency="true" />
13-
<package id="xunit.runner.visualstudio" version="2.3.0-beta3-build3705" targetFramework="net461" developmentDependency="true" />
3+
<package id="Microsoft.DotNet.InternalAbstractions" version="1.0.500-preview2-1-003177" targetFramework="net471" />
4+
<package id="Microsoft.TestPlatform.TestHost" version="15.3.0" targetFramework="net471" />
5+
<package id="System.ValueTuple" version="4.3.1" targetFramework="net471" />
6+
<package id="xunit" version="2.2.0" targetFramework="net471" />
7+
<package id="xunit.abstractions" version="2.0.1" targetFramework="net471" />
8+
<package id="xunit.assert" version="2.2.0" targetFramework="net471" />
9+
<package id="xunit.core" version="2.2.0" targetFramework="net471" />
10+
<package id="xunit.extensibility.core" version="2.2.0" targetFramework="net471" />
11+
<package id="xunit.extensibility.execution" version="2.2.0" targetFramework="net471" />
12+
<package id="xunit.runner.console" version="2.2.0" targetFramework="net471" developmentDependency="true" />
13+
<package id="xunit.runner.visualstudio" version="2.3.0-beta3-build3705" targetFramework="net471" developmentDependency="true" />
1414
</packages>

0 commit comments

Comments
 (0)