Skip to content

Commit 8b0e72e

Browse files
committed
Updated to release version of OnTopic-Library
With the release today of **OnTopic 4.0.0**, we're able to set the dependencies to the latest release version. This will also support all versions above 4.0.0 in the future, in case implementors have a later version. As such, the library won't need to be kept up-to-date with each version of **OnTopic**, unless it needs to take advantage of a new feature.
1 parent 858c4fe commit 8b0e72e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

OnTopic.Web.Host/OnTopic.Web.Host.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@
4444
</PropertyGroup>
4545
<ItemGroup>
4646
<Reference Include="OnTopic, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
47-
<HintPath>..\packages\OnTopic.4.0.0-alpha.1\lib\netstandard2.0\OnTopic.dll</HintPath>
47+
<HintPath>..\packages\OnTopic.4.0.0\lib\netstandard2.0\OnTopic.dll</HintPath>
4848
</Reference>
4949
<Reference Include="OnTopic.Data.Caching, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
50-
<HintPath>..\packages\OnTopic.Data.Caching.4.0.0-alpha.1\lib\netstandard2.0\OnTopic.Data.Caching.dll</HintPath>
51-
</Reference>
52-
<Reference Include="OnTopic.Data.Sql, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
53-
<HintPath>..\packages\OnTopic.Data.Sql.4.0.0-alpha.1\lib\netstandard2.0\OnTopic.Data.Sql.dll</HintPath>
50+
<HintPath>..\packages\OnTopic.Data.Caching.4.0.0\lib\netstandard2.0\OnTopic.Data.Caching.dll</HintPath>
5451
</Reference>
5552
<Reference Include="Microsoft.CSharp" />
5653
<Reference Include="Microsoft.VisualStudio.Validation, Version=15.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
5754
<HintPath>..\packages\Microsoft.VisualStudio.Validation.15.5.31\lib\netstandard2.0\Microsoft.VisualStudio.Validation.dll</HintPath>
5855
</Reference>
56+
<Reference Include="OnTopic.Data.Sql, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
57+
<HintPath>..\packages\OnTopic.Data.Sql.4.0.0\lib\netstandard2.0\OnTopic.Data.Sql.dll</HintPath>
58+
</Reference>
5959
<Reference Include="System.ComponentModel.Annotations, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
6060
<HintPath>..\packages\System.ComponentModel.Annotations.4.6.0\lib\net461\System.ComponentModel.Annotations.dll</HintPath>
6161
</Reference>

OnTopic.Web.Host/packages.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="OnTopic" version="4.0.0-alpha.1" targetFramework="net48" />
4-
<package id="OnTopic.Data.Caching" version="4.0.0-alpha.1" targetFramework="net48" />
5-
<package id="OnTopic.Data.Sql" version="4.0.0-alpha.1" targetFramework="net48" />
63
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="2.0.1" targetFramework="net48" />
74
<package id="Microsoft.CSharp" version="4.6.0" targetFramework="net48" />
85
<package id="Microsoft.VisualStudio.Validation" version="15.5.31" targetFramework="net48" />
6+
<package id="OnTopic" version="4.0.0" targetFramework="net48" />
7+
<package id="OnTopic.Data.Caching" version="4.0.0" targetFramework="net48" />
8+
<package id="OnTopic.Data.Sql" version="4.0.0" targetFramework="net48" />
99
<package id="System.ComponentModel.Annotations" version="4.6.0" targetFramework="net48" />
1010
<package id="System.Data.DataSetExtensions" version="4.5.0" targetFramework="net48" />
1111
<package id="System.Data.SqlClient" version="4.7.0" targetFramework="net48" />

OnTopic.Web/OnTopic.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<NoWarn>CS0618,CA1010,CA1056,CA1065;CA1303</NoWarn>
3030
</PropertyGroup>
3131
<ItemGroup>
32-
<PackageReference Include="OnTopic" Version="4.0.0-alpha.1"></PackageReference>
32+
<PackageReference Include="OnTopic" Version="4.0.0"></PackageReference>
3333
<PackageReference Include="GitVersionTask" Version="5.0.1">
3434
<PrivateAssets>all</PrivateAssets>
3535
</PackageReference>

0 commit comments

Comments
 (0)