Skip to content

Commit 70becad

Browse files
committed
Centralize some nuget package information
...in the new ./nuget-info.
1 parent 05bc57d commit 70becad

File tree

23 files changed

+71
-96
lines changed

23 files changed

+71
-96
lines changed

.github/workflows/sandbox.yml

+7-35
Original file line numberDiff line numberDiff line change
@@ -11,38 +11,10 @@ jobs:
1111
- uses: actions/checkout@v3
1212
with:
1313
fetch-depth: 0
14-
- name: Setup .NET
15-
uses: actions/setup-dotnet@v3
16-
with:
17-
dotnet-version: 6.0.x
18-
19-
# Build and bUnit Test BlazorApp1.sln
20-
- name: Restore dependencies
21-
run: dotnet restore src/template.blazor/BlazorApp1.sln
22-
- name: Build BlazorApp1
23-
run: dotnet build src/template.blazor/BlazorApp1.sln --configuration Release
24-
- name: Test BlazorApp1
25-
run: dotnet test src/template.blazor/src/BlazorApp1BunitTest/BlazorApp1BunitTest.csproj --configuration Release --no-restore --no-build --verbosity normal
26-
27-
- name: Create .nupkg package
28-
run: dotnet pack src/template.blazor/template.blazor.csproj -o ${{ github.workspace }}/packages
29-
30-
# Create and test a solution with above template package
31-
- name: Install the template package
32-
run: dotnet new install ${{ github.workspace }}/packages/aspnettest.template.blazor*.nupkg
33-
- name: Instantiate the template
34-
run: dotnet new aspnettest-blazor -o GithubAction
35-
- name: Restore template dependencies
36-
run: dotnet restore GithubAction/GithubAction.sln
37-
- name: Build the template
38-
run: dotnet build GithubAction/GithubAction.sln --configuration Debug
39-
- name: Test the template
40-
run: dotnet test GithubAction/src/GithubActionBunitTest/GithubActionBunitTest.csproj --configuration Debug --no-restore --no-build --verbosity normal
41-
42-
# Upload the packages when above smoke test was green
43-
- name: Upload .nupkg package
44-
uses: actions/upload-artifact@v3
45-
with:
46-
name: template.blazor
47-
path: ${{ github.workspace }}/packages/*.nupkg
48-
retention-days: 10
14+
- name: Get version.txt
15+
shell: pwsh
16+
run: |
17+
$version = Get-Content ${{ github.workspace }}/nuget-info/version.txt
18+
echo "version=$version" >> $GITHUB_ENV
19+
- name: Use version.txt
20+
run: echo ">${{ env.version }}<"

AUTHORS

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
Copyright (C) 2018-2020 Toni Arnold <[email protected]>
1+
Copyright (C) 2018-2023 Toni Arnold <[email protected]>
22
See the COPYING file in the same directory as this file for the license.
33

44

55
Dependencies:
66

7-
SMC: Copyright (C) 2004-2020 Charles W. Rapp.
7+
SMC: Copyright (C) 2004-2022 Charles W. Rapp.
88

99
#region NUnit Assert.That signatures in SeleniumExtensionBase from:
1010
Copyright (c) 2011 Charlie Poole, Rob Prouse

src/apicaller.core/apicaller.core.nuget.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="aspnettest.asplib.core" Version="0.2.1" />
11+
<PackageReference Include="aspnettest.asplib.core" Version="$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

src/apiservice.core/apiservice.core.nuget.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="aspnettest.asplib.core" Version="0.2.1" />
11+
<PackageReference Include="aspnettest.asplib.core" Version="$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))" />
1212
</ItemGroup>
1313

1414
<!-- Don't require the SMC code generator Makefile project dependency when /p:noSmc=true -->

src/apitest.core/apitest.core.nuget.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="aspnettest.asplib.core" Version="0.2.1" />
11+
<PackageReference Include="aspnettest.asplib.core" Version="$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))" />
1212
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.13" />
1313
<PackageReference Include="nunit" Version="3.13.3" />
1414
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1">

src/asplib.blazor/asplib.blazor.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99

1010
<PropertyGroup>
1111
<Authors>Toni Arnold, Charles W. Rapp (SMC)</Authors>
12-
<Version>0.2.1</Version>
12+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
1313
<PackageId>aspnettest.asplib.blazor</PackageId>
1414
<Product>aspnettest</Product>
15-
<Description>Base for an ASP.NET Model Control View design pattern with session persistence and optionally SMC, the State Machine Compiler</Description>
15+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/asplib-description.txt"))</Description>
1616
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
17-
<Copyright>Copyright © 2018-2022</Copyright>
17+
<Copyright>Copyright © 2018-2023</Copyright>
1818
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
1919
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
21-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
21+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
2222
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2323
</PropertyGroup>
2424

src/asplib.core/asplib.core.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88

99
<PropertyGroup>
1010
<Authors>Toni Arnold, Charles W. Rapp (SMC)</Authors>
11-
<Version>0.2.1</Version>
11+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
1212
<PackageId>aspnettest.asplib.core</PackageId>
1313
<Product>aspnettest</Product>
14-
<Description>Base for an ASP.NET Model Control View design pattern with session persistence and optionally SMC, the State Machine Compiler</Description>
14+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/asplib-description.txt"))</Description>
1515
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
16-
<Copyright>Copyright © 2018-2022</Copyright>
16+
<Copyright>Copyright © 2018-2023</Copyright>
1717
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
20-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
20+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
2121
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2222
</PropertyGroup>
2323

src/asplib.webforms/asplib.webforms.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
</PropertyGroup>
2121
<PropertyGroup>
2222
<Authors>Toni Arnold, Charles W. Rapp (SMC)</Authors>
23-
<Version>0.2.1</Version>
23+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
2424
<PackageId>aspnettest.asplib.webforms</PackageId>
2525
<Product>aspnettest</Product>
26-
<Description>Base for an ASP.NET Model Control View design pattern with session persistence and optionally SMC, the State Machine Compiler</Description>
26+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/asplib-description.txt"))</Description>
2727
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
28-
<Copyright>Copyright © 2018-2022</Copyright>
28+
<Copyright>Copyright © 2018-2023</Copyright>
2929
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
3030
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
3131
<RepositoryType>git</RepositoryType>
32-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
32+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
3333
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
3434
</PropertyGroup>
3535
<PropertyGroup>

src/asplib.websharper/asplib.websharper.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88

99
<PropertyGroup>
1010
<Authors>Toni Arnold, Charles W. Rapp (SMC)</Authors>
11-
<Version>0.2.1</Version>
11+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
1212
<PackageId>aspnettest.asplib.websharper</PackageId>
1313
<Product>aspnettest</Product>
14-
<Description>Base for an ASP.NET Model Control View design pattern with session persistence and optionally SMC, the State Machine Compiler</Description>
14+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/asplib-description.txt"))</Description>
1515
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
16-
<Copyright>Copyright © 2018-2022</Copyright>
16+
<Copyright>Copyright © 2018-2023</Copyright>
1717
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
20-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
20+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
2121
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2222
</PropertyGroup>
2323

src/iie.core/iie.core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<Description>ASP.NET In-App-GUI-Tests with Internet Explorer and NUnit</Description>
1414
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
1515
<Copyright>Copyright © 2018</Copyright>
16-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
16+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
1717
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1818
</PropertyGroup>
1919

src/iselenium.blazor/iselenium.blazor.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88

99
<PropertyGroup>
1010
<Authors>Toni Arnold</Authors>
11-
<Version>0.2.1</Version>
11+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
1212
<PackageId>aspnettest.iselenium.blazor</PackageId>
1313
<Product>aspnettest</Product>
14-
<Description>ASP.NET In-App-GUI-Tests with Selenium and NUnit</Description>
14+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/iselenium-description.txt"))</Description>
1515
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
16-
<Copyright>Copyright © 2018-2022</Copyright>
16+
<Copyright>Copyright © 2018-2023</Copyright>
1717
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
20-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
20+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
2121
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2222
</PropertyGroup>
2323

src/iselenium.core/iselenium.core.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88

99
<PropertyGroup>
1010
<Authors>Toni Arnold</Authors>
11-
<Version>0.2.1</Version>
11+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
1212
<PackageId>aspnettest.iselenium.core</PackageId>
1313
<Product>aspnettest</Product>
14-
<Description>ASP.NET In-App-GUI-Tests with Selenium and NUnit</Description>
14+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/iselenium-description.txt"))</Description>
1515
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
16-
<Copyright>Copyright © 2018-2022</Copyright>
16+
<Copyright>Copyright © 2018-2023</Copyright>
1717
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
20-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
20+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
2121
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2222
</PropertyGroup>
2323

src/iselenium.webforms/iselenium.webforms.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
</PropertyGroup>
2222
<PropertyGroup>
2323
<Authors>Toni Arnold</Authors>
24-
<Version>0.2.1</Version>
24+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
2525
<PackageId>aspnettest.iselenium.webforms</PackageId>
2626
<Product>aspnettest</Product>
27-
<Description>ASP.NET In-App-GUI-Tests with Selenium and NUnit</Description>
27+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/iselenium-description.txt"))</Description>
2828
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
29-
<Copyright>Copyright © 2018-2022</Copyright>
29+
<Copyright>Copyright © 2018-2023</Copyright>
3030
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
3131
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
3232
<RepositoryType>git</RepositoryType>
33-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
33+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
3434
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
3535
</PropertyGroup>
3636
<PropertyGroup>

src/iselenium.websharper/iselenium.websharper.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77

88
<PropertyGroup>
99
<Authors>Toni Arnold</Authors>
10-
<Version>0.2.1</Version>
10+
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))</Version>
1111
<PackageId>aspnettest.iselenium.websharper</PackageId>
1212
<Product>aspnettest</Product>
13-
<Description>ASP.NET In-App-GUI-Tests with Selenium and NUnit</Description>
13+
<Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/iselenium-description.txt"))</Description>
1414
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
15-
<Copyright>Copyright © 2018-2022</Copyright>
15+
<Copyright>Copyright © 2018-2023</Copyright>
1616
<PackageProjectUrl>https://github.com/toniarnold/aspnettest/</PackageProjectUrl>
1717
<RepositoryUrl>https://github.com/toniarnold/aspnettest.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>
19-
<PackageReleaseNotes>alpha</PackageReleaseNotes>
19+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/release-notes.txt"))</PackageReleaseNotes>
2020
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2121
</PropertyGroup>
2222

src/minimal.blazor/minimal.blazor.nuget.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="aspnettest.asplib.blazor" Version="0.2.1" />
14-
<PackageReference Include="aspnettest.iselenium.blazor" Version="0.2.1" />
13+
<PackageReference Include="aspnettest.asplib.blazor" Version="$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)/../../nuget-info/version.txt'))" />
14+
<PackageReference Include="aspnettest.iselenium.blazor" Version="$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)/../../nuget-info/version.txt'))" />
1515
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="109.0.5414.7400" />
1616
<PackageReference Include="Selenium.WebDriver.GeckoDriver" Version="0.32.0" />
1717
<PackageReference Include="Selenium.WebDriver.MSEdgeDriver" Version="109.0.1518.44-pre" />

src/minimal.core/minimal.core.nuget.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="aspnettest.asplib.core" Version="0.2.1" />
18-
<PackageReference Include="aspnettest.iselenium.core" Version="0.2.1" />
17+
<PackageReference Include="aspnettest.asplib.core" Version="$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)/../../nuget-info/version.txt'))" />
18+
<PackageReference Include="aspnettest.iselenium.core" Version="$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)/../../nuget-info/version.txt'))" />
1919
<PackageReference Include="Selenium.WebDriver.MSEdgeDriver" Version="109.0.1518.44-pre" />
2020
</ItemGroup>
2121

src/minimal.webforms/minimal.webforms.nuget.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
</PropertyGroup>
4848
<ItemGroup>
4949
<Reference Include="asplib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
50-
<HintPath>..\..\packages\iselenium.webforms.0.2.1\lib\net462\asplib.dll</HintPath>
50+
<HintPath>..\..\packages\iselenium.webforms.$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))\lib\net462\asplib.dll</HintPath>
5151
</Reference>
5252
<Reference Include="asplib.webforms, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
53-
<HintPath>..\..\packages\iselenium.webforms.0.2.1\lib\net462\asplib.webforms.dll</HintPath>
53+
<HintPath>..\..\packages\iselenium.webforms.$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))\lib\net462\asplib.webforms.dll</HintPath>
5454
</Reference>
5555
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
5656
<HintPath>..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
@@ -59,10 +59,10 @@
5959
<HintPath>..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
6060
</Reference>
6161
<Reference Include="iselenium, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
62-
<HintPath>..\..\packages\iselenium.webforms.0.2.1\lib\net462\iselenium.dll</HintPath>
62+
<HintPath>..\..\packages\iselenium.webforms.$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))\lib\net462\iselenium.dll</HintPath>
6363
</Reference>
6464
<Reference Include="iselenium.webforms, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
65-
<HintPath>..\..\packages\iselenium.webforms.0.2.1\lib\net462\iselenium.webforms.dll</HintPath>
65+
<HintPath>..\..\packages\iselenium.webforms.$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))\lib\net462\iselenium.webforms.dll</HintPath>
6666
</Reference>
6767
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6868
<HintPath>..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.3.6.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
@@ -86,7 +86,7 @@
8686
<HintPath>..\..\packages\NUnit.3.13.3\lib\net45\nunit.framework.dll</HintPath>
8787
</Reference>
8888
<Reference Include="smc, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
89-
<HintPath>..\..\packages\iselenium.webforms.0.2.1\lib\net462\smc.dll</HintPath>
89+
<HintPath>..\..\packages\iselenium.webforms.$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../nuget-info/version.txt"))\lib\net462\smc.dll</HintPath>
9090
</Reference>
9191
<Reference Include="System.Data.DataSetExtensions" />
9292
<Reference Include="System.Net.Http" />

src/minimal.websharper.spa/minimal.websharper.spa.nuget.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="aspnettest.asplib.websharper" Version="0.2.1" />
15-
<PackageReference Include="aspnettest.iselenium.websharper" Version="0.2.1" />
14+
<PackageReference Include="aspnettest.asplib.websharper" Version="$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)/../../nuget-info/version.txt'))" />
15+
<PackageReference Include="aspnettest.iselenium.websharper" Version="$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)/../../nuget-info/version.txt'))" />
1616
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="109.0.5414.7400" />
1717
<PackageReference Include="Selenium.WebDriver.GeckoDriver" Version="0.32.0" />
1818
<PackageReference Include="Selenium.WebDriver.MSEdgeDriver" Version="109.0.1518.44-pre" />

src/minimaltest.blazor/minimaltest.blazor.nuget.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="aspnettest.iselenium.blazor" Version="0.2.1" />
12+
<PackageReference Include="aspnettest.iselenium.blazor" Version="$([System.IO.File]::ReadAllText('$(MSBuildProjectDirectory)/../../nuget-info/version.txt'))" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
1414
<PackageReference Include="NUnit" Version="3.13.3" />
1515
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" />

0 commit comments

Comments
 (0)