Skip to content

Commit

Permalink
.NET 8.0 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
VNNCC authored Nov 14, 2023
1 parent 01f454a commit 8e2c6b9
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 66 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ on:
paths-ignore:
- "README.md"

env:
DOTNET_VERSION: "7.0.x" # The .NET SDK version to use

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -22,7 +19,10 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
dotnet-version: |
6.x
7.x
8.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand All @@ -43,7 +43,10 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
dotnet-version: |
6.x
7.x
8.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion src/ExampleClient/ExampleClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ExampleServer/ExampleServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
118 changes: 59 additions & 59 deletions src/Snowberry.IPC/Snowberry.IPC.csproj
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;netstandard2.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>

<Authors>Snowberry Software</Authors>
<Description>Interprocess communication (IPC) library utilizes named pipes to allow communication between different processes running on the same machine.</Description>

<AssemblyVersion>1.0.0.9</AssemblyVersion>
<VersionPrefix>1.0.9</VersionPrefix>

<IsPackable>true</IsPackable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>ipc, interprocess communication, lightweight, simple, easy</PackageTags>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeBuildOutput>true</IncludeBuildOutput>
<Copyright>Copyright © 2023 Snowberry Software</Copyright>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/snowberry-software/Snowberry.IPC</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>

<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/snowberry-software/Snowberry.IPC.git</RepositoryUrl>
</PropertyGroup>

<PropertyGroup>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>

<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
<DebugType>embedded</DebugType>
</PropertyGroup>

<!-- Deterministic Builds -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<!-- SourceLink -->
<ItemGroup>
<!-- For GitHub -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;netstandard2.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>

<Authors>Snowberry Software</Authors>
<Description>Interprocess communication (IPC) library utilizes named pipes to allow communication between different processes running on the same machine.</Description>

<AssemblyVersion>2.0.0.0</AssemblyVersion>
<VersionPrefix>2.0.0</VersionPrefix>

<IsPackable>true</IsPackable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>ipc, interprocess communication, lightweight, simple, easy</PackageTags>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeBuildOutput>true</IncludeBuildOutput>
<Copyright>Copyright © 2023 Snowberry Software</Copyright>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/snowberry-software/Snowberry.IPC</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>

<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/snowberry-software/Snowberry.IPC.git</RepositoryUrl>
</PropertyGroup>

<PropertyGroup>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>

<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
<DebugType>embedded</DebugType>
</PropertyGroup>

<!-- Deterministic Builds -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<!-- SourceLink -->
<ItemGroup>
<!-- For GitHub -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>

0 comments on commit 8e2c6b9

Please sign in to comment.