Skip to content

Commit

Permalink
fix(all): use correct csproj version
Browse files Browse the repository at this point in the history
  • Loading branch information
apaparazzi0329 committed Mar 17, 2023
1 parent f0ab5dd commit 7c40755
Show file tree
Hide file tree
Showing 28 changed files with 47 additions and 46 deletions.
10 changes: 5 additions & 5 deletions IBM.Watson.sln
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.Discovery.v2.Uni
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.IntegrationTests", "src\IBM.Watson.IntegrationTests\IBM.Watson.IntegrationTests.csproj", "{034DFAD3-4A2D-4483-8D3C-DFE82BA8EFDA}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "IBM.Watson.Discovery.v1.Examples", "src\IBM.Watson.Discovery.v1\Examples\IBM.Watson.Discovery.v1.Examples.csproj", "{E8B3D0E1-5A82-458E-BD65-0661E10FB5BF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.Discovery.v1.Examples", "src\IBM.Watson.Discovery.v1\Examples\IBM.Watson.Discovery.v1.Examples.csproj", "{E8B3D0E1-5A82-458E-BD65-0661E10FB5BF}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "IBM.Watson.NLU.v1.Examples", "src\IBM.Watson.NaturalLanguageUnderstanding.v1\Examples\IBM.Watson.NLU.v1.Examples.csproj", "{6BE05584-9060-4C60-9FEC-69E0304E1AAF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.NLU.v1.Examples", "src\IBM.Watson.NaturalLanguageUnderstanding.v1\Examples\IBM.Watson.NLU.v1.Examples.csproj", "{6BE05584-9060-4C60-9FEC-69E0304E1AAF}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "IBM.Watson.LanguageTranslator.v3.Examples", "src\IBM.Watson.LanguageTranslator.v3\Examples\IBM.Watson.LanguageTranslator.v3.Examples.csproj", "{BA973578-B37F-4455-AB08-E21BBB481AF5}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.LanguageTranslator.v3.Examples", "src\IBM.Watson.LanguageTranslator.v3\Examples\IBM.Watson.LanguageTranslator.v3.Examples.csproj", "{BA973578-B37F-4455-AB08-E21BBB481AF5}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "IBM.Watson.Assistant.v2.Examples", "src\IBM.Watson.Assistant.v2\Examples\IBM.Watson.Assistant.v2.Examples.csproj", "{06F83A14-C285-4D10-A7EC-CECDEB19BD6F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.Assistant.v2.Examples", "src\IBM.Watson.Assistant.v2\Examples\IBM.Watson.Assistant.v2.Examples.csproj", "{06F83A14-C285-4D10-A7EC-CECDEB19BD6F}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "IBM.Watson.Discovery.v2.Examples", "src\IBM.Watson.Discovery.v2\Examples\IBM.Watson.Discovery.v2.Examples.csproj", "{1090A444-1E84-4BBE-B827-4131C1FF9A8E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.Discovery.v2.Examples", "src\IBM.Watson.Discovery.v2\Examples\IBM.Watson.Discovery.v2.Examples.csproj", "{1090A444-1E84-4BBE-B827-4131C1FF9A8E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 4 additions & 3 deletions src/IBM.Watson.Assistant.v1/IBM.Watson.Assistant.v1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
<PropertyGroup>
<Description>IBM.Watson.Assistant.v1 wraps the Watson Assistant service (http://www.ibm.com/watson/developercloud/assistant.html)</Description>
<AssemblyTitle>IBM.Watson.Assistant.v1</AssemblyTitle>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionPrefix>6.1.0</VersionPrefix>
<Authors>IBM Watson</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>IBM.Watson.Assistant.v1</AssemblyName>
<PackageId>IBM.Watson.Assistant.v1</PackageId>
<PackageTags>watson;cognitive;speech;vision;machine-learning;ml;ai;artificial-intelligence;.NET;.NET-Standard</PackageTags>
<PackageIconUrl>https://watson-developer-cloud.github.io/dotnet-standard-sdk/img/Watson_Avatar_Pos_RGB.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/watson-developer-cloud/dotnet-standard-sdk</PackageProjectUrl>
<Version>7.0.0</Version>
<Version>6.1.0</Version>
<Configurations>Release;Debug</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -35,7 +36,7 @@

<ItemGroup>
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.3.1" />
<PackageReference Include="IBM.Watson.Common" Version="7.0.0" />
<PackageReference Include="IBM.Watson.Common" Version="6.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Assistant.v1.IntegrationTests</AssemblyName>
<PackageId>IBM.Watson.Assistant.v1.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Assistant.v1.UnitTests</AssemblyName>
<PackageId>IBM.Watson.Assistant.v1.UnitTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Assistant.v2.IntTests</AssemblyName>
<PackageId>IBM.Watson.Assistant.v2.IntTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Assistant.v2.UnitTests</AssemblyName>
<PackageId>IBM.Watson.Assistant.v2.UnitTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
6 changes: 3 additions & 3 deletions src/IBM.Watson.Discovery.v1/IBM.Watson.Discovery.v1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<PropertyGroup>
<Description>IBM.Watson.Discovery.v1 wraps the Watson Discovery service (http://www.ibm.com/watson/developercloud/discovery.html)</Description>
<AssemblyTitle>IBM.Watson.Discovery.v1</AssemblyTitle>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionPrefix>6.1.0</VersionPrefix>
<Authors>IBM Watson</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>IBM.Watson.Discovery.v1</AssemblyName>
<PackageId>IBM.Watson.Discovery.v1</PackageId>
<PackageTags>watson;cognitive;speech;vision;machine-learning;ml;ai;artificial-intelligence;.NET;.NET-Standard</PackageTags>
<PackageIconUrl>https://watson-developer-cloud.github.io/dotnet-standard-sdk/img/Watson_Avatar_Pos_RGB.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/watson-developer-cloud/dotnet-standard-sdk</PackageProjectUrl>
<Version>7.0.0</Version>
<Version>6.1.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -35,7 +35,7 @@

<ItemGroup>
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.3.1" />
<PackageReference Include="IBM.Watson.Common" Version="7.0.0" />
<PackageReference Include="IBM.Watson.Common" Version="6.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Discovery.v1.IntegrationTests</AssemblyName>
<PackageId>IBM.Watson.Discovery.v1.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Discovery.v1.UnitTests</AssemblyName>
<PackageId>IBM.Watson.Discovery.v1.UnitTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/IBM.Watson.Discovery.v2/IBM.Watson.Discovery.v2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<PropertyGroup>
<Description>IBM.Watson.Discovery.v2 wraps the Watson Discovery service (http://www.ibm.com/watson/developercloud/discovery.html)</Description>
<AssemblyTitle>IBM.Watson.Discovery.v2</AssemblyTitle>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionPrefix>6.1.0</VersionPrefix>
<Authors>IBM Watson</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>IBM.Watson.Discovery.v2</AssemblyName>
<PackageId>IBM.Watson.Discovery.v2</PackageId>
<PackageTags>watson;cognitive;speech;vision;machine-learning;ml;ai;artificial-intelligence;.NET;.NET-Standard</PackageTags>
<PackageIconUrl>https://watson-developer-cloud.github.io/dotnet-standard-sdk/img/Watson_Avatar_Pos_RGB.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/watson-developer-cloud/dotnet-standard-sdk</PackageProjectUrl>
<Version>7.0.0</Version>
<Version>6.1.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -35,7 +35,7 @@

<ItemGroup>
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.3.1" />
<PackageReference Include="IBM.Watson.Common" Version="7.0.0" />
<PackageReference Include="IBM.Watson.Common" Version="6.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Discovery.v2.IntegrationTests</AssemblyName>
<PackageId>IBM.Watson.Discovery.v2.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.Discovery.v2.UnitTests</AssemblyName>
<PackageId>IBM.Watson.Discovery.v2.UnitTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.IntegrationTests</AssemblyName>
<PackageId>IBM.Watson.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<PropertyGroup>
<Description>IBM.Watson.LanguageTranslator.v3 wraps the Watson Language Translator service (http://www.ibm.com/watson/developercloud/language-translator.html)</Description>
<AssemblyTitle>IBM.Watson.LanguageTranslator.v3</AssemblyTitle>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionPrefix>6.1.0</VersionPrefix>
<Authors>IBM Watson</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>IBM.Watson.LanguageTranslator.v3</AssemblyName>
<PackageId>IBM.Watson.LanguageTranslator.v3</PackageId>
<PackageTags>watson;cognitive;speech;vision;machine-learning;ml;ai;artificial-intelligence;.NET;.NET-Standard</PackageTags>
<PackageIconUrl>https://watson-developer-cloud.github.io/dotnet-standard-sdk/img/Watson_Avatar_Pos_RGB.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/watson-developer-cloud/dotnet-standard-sdk</PackageProjectUrl>
<Version>7.0.0</Version>
<Version>6.1.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -35,7 +35,7 @@

<ItemGroup>
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.3.1" />
<PackageReference Include="IBM.Watson.Common" Version="7.0.0" />
<PackageReference Include="IBM.Watson.Common" Version="6.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.LanguageTranslator.v3.IntegrationTests</AssemblyName>
<PackageId>IBM.Watson.LanguageTranslator.v3.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.LanguageTranslator.v3.UnitTests</AssemblyName>
<PackageId>IBM.Watson.LanguageTranslator.v3.UnitTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<PropertyGroup>
<Description>IBM.Watson.NaturalLanguageUnderstanding.v1 wraps the Watson Natural Language Understanding service (http://www.ibm.com/watson/developercloud/natural-language-understanding.html)</Description>
<AssemblyTitle>IBM.Watson.NaturalLanguageUnderstanding.v1</AssemblyTitle>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionPrefix>6.1.0</VersionPrefix>
<Authors>IBM Watson</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>IBM.Watson.NaturalLanguageUnderstanding.v1</AssemblyName>
<PackageId>IBM.Watson.NaturalLanguageUnderstanding.v1</PackageId>
<PackageTags>watson;cognitive;speech;vision;machine-learning;ml;ai;artificial-intelligence;.NET;.NET-Standard</PackageTags>
<PackageIconUrl>https://watson-developer-cloud.github.io/dotnet-standard-sdk/img/Watson_Avatar_Pos_RGB.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/watson-developer-cloud/dotnet-standard-sdk</PackageProjectUrl>
<Version>7.0.0</Version>
<Version>6.1.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -35,7 +35,7 @@

<ItemGroup>
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.3.1" />
<PackageReference Include="IBM.Watson.Common" Version="7.0.0" />
<PackageReference Include="IBM.Watson.Common" Version="6.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.NaturalLanguageUnderstanding.v1.IntTests</AssemblyName>
<PackageId>IBM.Watson.NaturalLanguageUnderstanding.v1.IntTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.NaturalLanguageUnderstanding.v1.UnitTests</AssemblyName>
<PackageId>IBM.Watson.NaturalLanguageUnderstanding.v1.UnitTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<PropertyGroup>
<Description>IBM.Watson.SpeechToText.v1 wraps the Watson Speech To Text service (http://www.ibm.com/watson/developercloud/speech-to-text.html)</Description>
<AssemblyTitle>IBM.Watson.SpeechToText.v1</AssemblyTitle>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionPrefix>6.1.0</VersionPrefix>
<Authors>IBM Watson</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>IBM.Watson.SpeechToText.v1</AssemblyName>
<PackageId>IBM.Watson.SpeechToText.v1</PackageId>
<PackageTags>watson;cognitive;speech;vision;machine-learning;ml;ai;artificial-intelligence;.NET;.NET-Standard</PackageTags>
<PackageIconUrl>https://watson-developer-cloud.github.io/dotnet-standard-sdk/img/Watson_Avatar_Pos_RGB.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/watson-developer-cloud/dotnet-standard-sdk</PackageProjectUrl>
<Version>7.0.0</Version>
<Version>6.1.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -35,7 +35,7 @@

<ItemGroup>
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.3.1" />
<PackageReference Include="IBM.Watson.Common" Version="7.0.0" />
<PackageReference Include="IBM.Watson.Common" Version="6.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="JsonSubTypes" Version="1.8.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.SpeechToText.v1.IntegrationTests</AssemblyName>
<PackageId>IBM.Watson.SpeechToText.v1.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>6.1.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>IBM.Watson.SpeechToText.v1.UnitTests</AssemblyName>
<PackageId>IBM.Watson.SpeechToText.v1.UnitTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Loading

0 comments on commit 7c40755

Please sign in to comment.