Skip to content

Commit

Permalink
Release/4.0.0 (#94)
Browse files Browse the repository at this point in the history
* Update Serialize.Linq to last version. Realign Nuget Build not to include nuget references in packages.

* Fix JsRUntime nuget dep as well
  • Loading branch information
Tewr authored Jan 7, 2024
1 parent 4ca0a74 commit dc9ddb0
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<PackageTags>WebWorker Worker Process Threading Multithreading Blazor Isolation</PackageTags>
<PackageId>Tewr.BlazorWorker.Extensions.JSRuntime</PackageId>
<Configurations>Debug;Release;Nuget</Configurations>
<Version>4.0.0-preview2</Version>
<AssemblyVersion>4.0.0</AssemblyVersion>
<Version>4.0.0</Version>
<AssemblyVersion>4.0.0.1</AssemblyVersion>
<DocumentationFile>BlazorWorker.Extensions.JSRuntime.xml</DocumentationFile>
<PackageIcon>icon.png</PackageIcon>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down Expand Up @@ -49,8 +49,11 @@
<NoWarn>1701;1702;1591;CA1416</NoWarn>
</PropertyGroup>

<ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'!='Nuget|AnyCPU'">
<ProjectReference Include="..\BlazorWorker.WorkerCore\BlazorWorker.WorkerCore.csproj" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Nuget|AnyCPU'">
<PackageReference Include="Tewr.BlazorWorker.Core" Version="4.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
<Authors>Tewr</Authors>
<Product>BlazorWorker</Product>
<Configurations>Debug;Release;Nuget</Configurations>
<Version>4.0.0-preview2</Version>
<Version>4.0.0</Version>
<AssemblyVersion>4.0.0.1</AssemblyVersion>
<PackageIcon>icon.png</PackageIcon>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
Expand All @@ -30,15 +31,19 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serialize.Linq" Version="2.0.0" />
<PackageReference Include="Serialize.Linq" Version="3.0.148" />
</ItemGroup>

<ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'!='Nuget|AnyCPU'">
<ProjectReference Include="..\BlazorWorker.WorkerCore\BlazorWorker.WorkerCore.csproj">
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\BlazorWorker\BlazorWorker.Core.csproj" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Nuget|AnyCPU'">
<PackageReference Include="Tewr.BlazorWorker.Core" Version="4.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BlazorWorker.WorkerBackgroundService\BlazorWorker.WorkerBackgroundService.csproj">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<Nullable></Nullable>
<Configurations>Debug;Release;Nuget</Configurations>
<Version>4.0.0-preview2</Version>
<Version>4.0.0</Version>
<AssemblyVersion>4.0.0.1</AssemblyVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

Expand All @@ -28,11 +29,14 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serialize.Linq" Version="2.0.0" />
<PackageReference Include="Serialize.Linq" Version="3.0.148" />
</ItemGroup>

<ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'!='Nuget|AnyCPU'">
<ProjectReference Include="..\BlazorWorker.WorkerCore\BlazorWorker.WorkerCore.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Nuget|AnyCPU'">
<PackageReference Include="Tewr.BlazorWorker.Core" Version="4.0.0" />
</ItemGroup>

</Project>
5 changes: 3 additions & 2 deletions src/BlazorWorker.WorkerCore/BlazorWorker.WorkerCore.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<Configurations>Debug;Release;Nuget</Configurations>
<Version>4.0.0-preview2</Version>
<Version>4.0.0</Version>
<AssemblyVersion>4.0.0.1</AssemblyVersion>
<Authors>Tor Knutsson (Tewr)</Authors>
<Company>Tor Knutsson (Tewr)</Company>
<Product>BlazorWorker</Product>
Expand Down
4 changes: 2 additions & 2 deletions src/BlazorWorker/BlazorWorker.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<PackageTags>WebWorker Worker Process Threading Multithreading Blazor Isolation</PackageTags>
<PackageId>Tewr.BlazorWorker.Core</PackageId>
<Configurations>Debug;Release;Nuget</Configurations>
<Version>4.0.0-preview2</Version>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<Version>4.0.0</Version>
<AssemblyVersion>4.0.0.1</AssemblyVersion>
<DocumentationFile>BlazorWorker.Core.xml</DocumentationFile>
<PackageIcon>icon.png</PackageIcon>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down

0 comments on commit dc9ddb0

Please sign in to comment.