44 <TargetFrameworks >netstandard2.0;net6.0</TargetFrameworks >
55 <AssemblyName >Tensorflow.Binding</AssemblyName >
66 <RootNamespace >Tensorflow</RootNamespace >
7- <TargetTensorFlow >2.10 .0</TargetTensorFlow >
8- <Version >0.110.1 </Version >
7+ <TargetTensorFlow >2.11 .0</TargetTensorFlow >
8+ <Version >0.110.2 </Version >
99 <LangVersion >10.0</LangVersion >
1010 <Nullable >enable</Nullable >
11- <Authors >Haiping Chen, Meinrad Recheis, Eli Belash </Authors >
11+ <Authors >Haiping Chen, Eli Belash, Yaohui Liu, Meinrad Recheis </Authors >
1212 <Company >SciSharp STACK</Company >
1313 <GeneratePackageOnBuild >False</GeneratePackageOnBuild >
1414 <Copyright >Apache 2.0, Haiping Chen $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright >
@@ -23,7 +23,8 @@ https://tensorflownet.readthedocs.io</Description>
2323 <AssemblyVersion >0.110.1.0</AssemblyVersion >
2424 <PackageReleaseNotes >
2525 tf.net 0.110.x and above are based on tensorflow native 2.11.0
26- * RNN, LSTM works.
26+ * Support RNN, LSTM model.
27+ * Support Transformer model.
2728
2829 tf.net 0.100.x and above are based on tensorflow native 2.10.0
2930
@@ -42,12 +43,11 @@ https://tensorflownet.readthedocs.io</Description>
4243 tf.net 0.10x.x aligns with TensorFlow v2.10.x native library.
4344 tf.net 0.11x.x aligns with TensorFlow v2.11.x native library.
4445 </PackageReleaseNotes >
45- <FileVersion >0.110.1 .0</FileVersion >
46+ <FileVersion >0.110.2 .0</FileVersion >
4647 <PackageLicenseFile >LICENSE</PackageLicenseFile >
4748 <PackageRequireLicenseAcceptance >true</PackageRequireLicenseAcceptance >
4849 <PackageOutputPath >packages</PackageOutputPath >
4950 <SignAssembly >true</SignAssembly >
50- <AssemblyOriginatorKeyFile >Open.snk</AssemblyOriginatorKeyFile >
5151 <Platforms >AnyCPU;x64</Platforms >
5252 <PackageId >TensorFlow.NET</PackageId >
5353 <Configurations >Debug;Release;GPU</Configurations >
@@ -88,6 +88,66 @@ https://tensorflownet.readthedocs.io</Description>
8888 <DefineConstants />
8989 </PropertyGroup >
9090
91+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'" >
92+ <WarningLevel >1</WarningLevel >
93+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
94+ </PropertyGroup >
95+
96+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|x64'" >
97+ <WarningLevel >1</WarningLevel >
98+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
99+ </PropertyGroup >
100+
101+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'" >
102+ <WarningLevel >1</WarningLevel >
103+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
104+ </PropertyGroup >
105+
106+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|x64'" >
107+ <WarningLevel >1</WarningLevel >
108+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
109+ </PropertyGroup >
110+
111+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|netstandard2.0|AnyCPU'" >
112+ <WarningLevel >1</WarningLevel >
113+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
114+ </PropertyGroup >
115+
116+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|netstandard2.0|x64'" >
117+ <WarningLevel >1</WarningLevel >
118+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
119+ </PropertyGroup >
120+
121+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'" >
122+ <WarningLevel >1</WarningLevel >
123+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
124+ </PropertyGroup >
125+
126+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|x64'" >
127+ <WarningLevel >1</WarningLevel >
128+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
129+ </PropertyGroup >
130+
131+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'" >
132+ <WarningLevel >1</WarningLevel >
133+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
134+ </PropertyGroup >
135+
136+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|x64'" >
137+ <WarningLevel >1</WarningLevel >
138+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
139+ </PropertyGroup >
140+
141+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|net6.0|AnyCPU'" >
142+ <WarningLevel >1</WarningLevel >
143+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
144+ </PropertyGroup >
145+
146+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|net6.0|x64'" >
147+ <WarningLevel >1</WarningLevel >
148+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
149+ </PropertyGroup >
150+
91151 <ItemGroup >
92152 <Compile Remove =" Distribute\**" />
93153 <Compile Remove =" Models\**" />
0 commit comments