Skip to content

Commit b144ea4

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 6d3dcd5 commit b144ea4

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@
5454
<HintPath>..\packages\Microsoft.VisualStudio.Validation.15.5.31\lib\netstandard2.0\Microsoft.VisualStudio.Validation.dll</HintPath>
5555
</Reference>
5656
<Reference Include="OnTopic, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
57-
<HintPath>..\packages\OnTopic.4.0.0-alpha.2\lib\netstandard2.0\OnTopic.dll</HintPath>
57+
<HintPath>..\packages\OnTopic.4.0.0\lib\netstandard2.0\OnTopic.dll</HintPath>
5858
</Reference>
5959
<Reference Include="OnTopic.Data.Caching, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
60-
<HintPath>..\packages\OnTopic.Data.Caching.4.0.0-alpha.2\lib\netstandard2.0\OnTopic.Data.Caching.dll</HintPath>
60+
<HintPath>..\packages\OnTopic.Data.Caching.4.0.0\lib\netstandard2.0\OnTopic.Data.Caching.dll</HintPath>
6161
</Reference>
6262
<Reference Include="OnTopic.Data.Sql, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
63-
<HintPath>..\packages\OnTopic.Data.Sql.4.0.0-alpha.2\lib\netstandard2.0\OnTopic.Data.Sql.dll</HintPath>
63+
<HintPath>..\packages\OnTopic.Data.Sql.4.0.0\lib\netstandard2.0\OnTopic.Data.Sql.dll</HintPath>
6464
</Reference>
6565
<Reference Include="OnTopic.ViewModels, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
66-
<HintPath>..\packages\OnTopic.ViewModels.4.0.0-alpha.2\lib\netstandard2.0\OnTopic.ViewModels.dll</HintPath>
66+
<HintPath>..\packages\OnTopic.ViewModels.4.0.0\lib\netstandard2.0\OnTopic.ViewModels.dll</HintPath>
6767
</Reference>
6868
<Reference Include="System.ComponentModel.Annotations, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
6969
<HintPath>..\packages\System.ComponentModel.Annotations.4.6.0\lib\net461\System.ComponentModel.Annotations.dll</HintPath>

OnTopic.Web.Mvc.Host/packages.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<package id="Microsoft.CSharp" version="4.6.0" targetFramework="net48" />
1010
<package id="Microsoft.VisualStudio.Validation" version="15.5.31" targetFramework="net48" />
1111
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net48" />
12-
<package id="OnTopic" version="4.0.0-alpha.2" targetFramework="net48" />
13-
<package id="OnTopic.Data.Caching" version="4.0.0-alpha.2" targetFramework="net48" />
14-
<package id="OnTopic.Data.Sql" version="4.0.0-alpha.2" targetFramework="net48" />
15-
<package id="OnTopic.ViewModels" version="4.0.0-alpha.2" targetFramework="net48" />
12+
<package id="OnTopic" version="4.0.0" targetFramework="net48" />
13+
<package id="OnTopic.Data.Caching" version="4.0.0" targetFramework="net48" />
14+
<package id="OnTopic.Data.Sql" version="4.0.0" targetFramework="net48" />
15+
<package id="OnTopic.ViewModels" version="4.0.0" targetFramework="net48" />
1616
<package id="System.ComponentModel.Annotations" version="4.6.0" targetFramework="net48" />
1717
<package id="System.Data.DataSetExtensions" version="4.5.0" targetFramework="net48" />
1818
<package id="System.Data.SqlClient" version="4.7.0" targetFramework="net48" />

OnTopic.Web.Mvc.Tests/OnTopic.Web.Mvc.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
3939
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
4040
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
41-
<PackageReference Include="OnTopic" Version="4.0.0-alpha.2" />
42-
<PackageReference Include="OnTopic.Data.Caching" Version="4.0.0-alpha.2" />
43-
<PackageReference Include="OnTopic.Data.Sql" Version="4.0.0-alpha.2" />
44-
<PackageReference Include="OnTopic.TestDoubles" Version="4.0.0-alpha.2" />
45-
<PackageReference Include="OnTopic.ViewModels" Version="4.0.0-alpha.2" />
41+
<PackageReference Include="OnTopic" Version="4.0.0" />
42+
<PackageReference Include="OnTopic.Data.Caching" Version="4.0.0" />
43+
<PackageReference Include="OnTopic.Data.Sql" Version="4.0.0" />
44+
<PackageReference Include="OnTopic.TestDoubles" Version="4.0.0" />
45+
<PackageReference Include="OnTopic.ViewModels" Version="4.0.0" />
4646
</ItemGroup>
4747
<ItemGroup>
4848
<Reference Include="System.ComponentModel.DataAnnotations">

OnTopic.Web.Mvc/OnTopic.Web.Mvc.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Company>Ignia</Company>
1111
<Product>Ignia OnTopic Library</Product>
1212
<Description>Provides presentation-layer support for the ASP.NET MVC Framework.</Description>
13-
<Copyright>©2020 Ignia, LLC</Copyright>
13+
<Copyright>Copyright © 2015 Ignia, LLC</Copyright>
1414
<OutputPath>bin\$(Configuration)\</OutputPath>
1515
<Authors>Ignia</Authors>
1616
</PropertyGroup>
@@ -41,8 +41,8 @@
4141
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4242
</PackageReference>
4343
<PackageReference Include="Microsoft.Web.Infrastructure" Version="1.0.0.0" />
44-
<PackageReference Include="OnTopic" Version="4.0.0-alpha.2" />
45-
<PackageReference Include="OnTopic.ViewModels" Version="4.0.0-alpha.2" />
44+
<PackageReference Include="OnTopic" Version="4.0.0" />
45+
<PackageReference Include="OnTopic.ViewModels" Version="4.0.0" />
4646
<PackageReference Include="UtilPack.NuGet.MSBuild" Version="2.9.1">
4747
<PrivateAssets>all</PrivateAssets>
4848
</PackageReference>

0 commit comments

Comments
 (0)