Skip to content

Commit 69152cf

Browse files
committed
removed obsolete interfaces.
1 parent fa0e527 commit 69152cf

18 files changed

+68
-472
lines changed

DemoCoreWeb/DemoCoreWeb.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Fonlow.WebApiClientGenCore" Version="7.9.0" />
8+
<PackageReference Include="Fonlow.WebApiClientGenCore" Version="7.9.2" />
99
</ItemGroup>
1010

1111
</Project>

DotNetPack.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$packCmd = 'dotnet pack $Name --no-build --output ./Release --configuration Release'
1+
$packCmd = 'dotnet pack $Name --no-build --output C:/NugetLocalFeeds --configuration Release'
22
$projList = 'Fonlow.Testing.HttpCore/Fonlow.Testing.HttpCore.csproj', 'Fonlow.Testing.ServiceCore/Fonlow.Testing.ServiceCore.csproj', 'Fonlow.Testing.Basic/Fonlow.Testing.Basic.csproj', 'Fonlow.Testing.Integration/Fonlow.Testing.Integration.csproj', 'Fonlow.Testing.Utilities/Fonlow.Testing.Utilities.csproj'
33
foreach($name in $projList){
44
Invoke-Expression $ExecutionContext.InvokeCommand.ExpandString($packCmd)

Fonlow.Testing.Basic/Fonlow.Testing.Basic.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Version>1.2</Version>
5+
<Version>1.3</Version>
66
<Authors>Zijian Huang</Authors>
77
<Description>Basic types and functions of Fonlow.Testing.Integration suite.</Description>
8-
<PackageReleaseNotes>.NET 9</PackageReleaseNotes>
8+
<PackageReleaseNotes>Obsolete settings removed.</PackageReleaseNotes>
99
<Copyright>Copyright © Fonlow 2015-$([System.DateTime]::Now.Year)</Copyright>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<PackageProjectUrl>https://github.com/zijianhuang/FonlowTesting</PackageProjectUrl>
@@ -23,8 +23,8 @@
2323
<CopyDocumentationFilesFromPackages>true</CopyDocumentationFilesFromPackages>
2424
</PropertyGroup>
2525
<ItemGroup>
26-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.0" />
27-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0" />
26+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.1" />
27+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.1" />
2828
</ItemGroup>
2929
<ItemGroup>
3030
<None Include="./README.md" Pack="true" PackagePath="/" />

Fonlow.Testing.Basic/TestingSettings.cs

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -136,34 +136,34 @@ static string GetBuildConfiguration()
136136
public string ExecutableExt { get; private set; } = string.Empty;
137137
#endregion
138138

139-
#region Obsolete
140-
[Obsolete("In favor of ServiceCommandFixture")]
141-
public string DotNetServiceAssemblyPath { get; set; }
142-
143-
/// <summary>
144-
/// For IIS Express, host site name
145-
/// </summary>
146-
[Obsolete("In favor of ServiceCommandFixture")]
147-
public string HostSite { get; set; }
148-
149-
/// <summary>
150-
/// For IIS Express, application pool
151-
/// </summary>
152-
[Obsolete("In favor of ServiceCommandFixture")]
153-
public string HostSiteApplicationPool { get; set; }
154-
155-
/// <summary>
156-
/// For IIS Express, the lib needs to be aware the SLN root
157-
/// </summary>
158-
[Obsolete("In favor of ServiceCommandFixture")]
159-
public string SlnRoot { get; set; }
160-
161-
/// <summary>
162-
/// For IIS Express, the lib needs to know the SLN name
163-
/// </summary>
164-
[Obsolete("In favor of ServiceCommandFixture")]
165-
public string SlnName { get; set; }
166-
#endregion
139+
//#region Obsolete
140+
//[Obsolete("In favor of ServiceCommandFixture")]
141+
//public string DotNetServiceAssemblyPath { get; set; }
142+
143+
///// <summary>
144+
///// For IIS Express, host site name
145+
///// </summary>
146+
//[Obsolete("In favor of ServiceCommandFixture")]
147+
//public string HostSite { get; set; }
148+
149+
///// <summary>
150+
///// For IIS Express, application pool
151+
///// </summary>
152+
//[Obsolete("In favor of ServiceCommandFixture")]
153+
//public string HostSiteApplicationPool { get; set; }
154+
155+
///// <summary>
156+
///// For IIS Express, the lib needs to be aware the SLN root
157+
///// </summary>
158+
//[Obsolete("In favor of ServiceCommandFixture")]
159+
//public string SlnRoot { get; set; }
160+
161+
///// <summary>
162+
///// For IIS Express, the lib needs to know the SLN name
163+
///// </summary>
164+
//[Obsolete("In favor of ServiceCommandFixture")]
165+
//public string SlnName { get; set; }
166+
//#endregion
167167

168168
}
169169

Fonlow.Testing.HttpCore/AuthHttpClients.cs

Lines changed: 0 additions & 53 deletions
This file was deleted.

Fonlow.Testing.HttpCore/DefaultHttpClient.cs

Lines changed: 0 additions & 62 deletions
This file was deleted.

Fonlow.Testing.HttpCore/DefaultHttpClientWithUsername.cs

Lines changed: 0 additions & 27 deletions
This file was deleted.

Fonlow.Testing.HttpCore/Fonlow.Testing.HttpCore.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<PackageProjectUrl>https://github.com/zijianhuang/FonlowTesting</PackageProjectUrl>
1111
<PackageTags>xunit nunit mstest unittesting iisexpress iis webapi restful dotnet</PackageTags>
1212
<NeutralLanguage>en</NeutralLanguage>
13-
<Version>3.6</Version>
14-
<PackageReleaseNotes>.NET 9</PackageReleaseNotes>
13+
<Version>3.7.2</Version>
14+
<PackageReleaseNotes>Obsolete classes removed.</PackageReleaseNotes>
1515
<PackageReadmeFile>README.md</PackageReadmeFile>
1616
<AnalysisLevel>latest-all</AnalysisLevel>
1717
</PropertyGroup>
@@ -28,6 +28,10 @@
2828
<None Include="../README.md" Pack="true" PackagePath="/" />
2929
</ItemGroup>
3030

31+
<ItemGroup>
32+
<PackageReference Include="Fonlow.Auth.tokenClient" Version="1.0.0" />
33+
</ItemGroup>
34+
3135
<ItemGroup>
3236
<ProjectReference Include="..\Fonlow.Testing.Basic\Fonlow.Testing.Basic.csproj" />
3337
</ItemGroup>

0 commit comments

Comments
 (0)