-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
69 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |