Skip to content

Commit 6e91102

Browse files
Update version number, fix examples build break.
1 parent be61da6 commit 6e91102

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -272,3 +272,4 @@ packages/
272272
*.code-workspace
273273
/.idea
274274
/test/TorchSharpTest/exportsd.py
275+
.vscode/settings.json

build/BranchInfo.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<MajorVersion>0</MajorVersion>
44
<MinorVersion>102</MinorVersion>
5-
<PatchVersion>2</PatchVersion>
5+
<PatchVersion>3</PatchVersion>
66
</PropertyGroup>
77

88
</Project>

src/Examples.Utils/Examples.Utils.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
<!-- The Directory.Build.props initialize TargetFrameworks to multiple targets. We have to clear that out to set only the targets we support. -->
55
<TargetFrameworks></TargetFrameworks>
66
<LangVersion>9.0</LangVersion>
7-
<TargetFrameworks Condition="'$(SkipNetCoreBuild)' != 'true'">net6.0</TargetFrameworks>
8-
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT' And '$(SkipNetFxBuild)' != 'true'">net472;$(TargetFrameworks)</TargetFrameworks>
97
<TargetFrameworks Condition="'$(TargetFrameworks)' == ''">net6.0</TargetFrameworks>
108
</PropertyGroup>
119

src/Examples/Examples.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
<!-- The Directory.Build.props initialize TargetFrameworks to multiple targets. We have to clear that out to set only the targets we support. -->
88
<TargetFrameworks></TargetFrameworks>
99
<LangVersion>9.0</LangVersion>
10-
<TargetFrameworks Condition="'$(SkipNetCoreBuild)' != 'true'">net6.0</TargetFrameworks>
11-
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT' And '$(SkipNetFxBuild)' != 'true'">net472;$(TargetFrameworks)</TargetFrameworks>
1210
<TargetFrameworks Condition="'$(TargetFrameworks)' == ''">net6.0</TargetFrameworks>
1311
<TestUsesLibTorch>true</TestUsesLibTorch>
1412
<UseMLCodeAnalyzer>false</UseMLCodeAnalyzer>

src/FSharp.Examples/FSharp.Examples.fsproj

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
<TestUsesLibTorch>true</TestUsesLibTorch>
66
<TestCuda>true</TestCuda>
77
<TargetFrameworks></TargetFrameworks>
8-
<TargetFrameworks Condition="'$(SkipNetCoreBuild)' != 'true'">net6.0</TargetFrameworks>
9-
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT' And '$(SkipNetFxBuild)' != 'true'">net472;$(TargetFrameworks)</TargetFrameworks>
108
<TargetFrameworks Condition="'$(TargetFrameworks)' == ''">net6.0</TargetFrameworks>
119
<TestUsesLibTorch>true</TestUsesLibTorch>
1210
<RootNamespace>Examples</RootNamespace>

0 commit comments

Comments
 (0)