Skip to content

Commit

Permalink
Add. net framework and Nuget tags
Browse files Browse the repository at this point in the history
  • Loading branch information
june-it committed Dec 18, 2024
1 parent adee136 commit 919e0d9
Showing 1 changed file with 39 additions and 38 deletions.
77 changes: 39 additions & 38 deletions src/MyStack.LocalMessage/MyStack.LocalMessage.csproj
Original file line number Diff line number Diff line change
@@ -1,44 +1,45 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Nullable>enable</Nullable>
<TargetFramework>netstandard2.1</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>MyStack.LocalMessage</Title>
<Version>1.0.2</Version>
<Authors>Jun Wan</Authors>
<Company>Jun Wan</Company>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>NUGET.md</PackageReadmeFile>
<Description>Open-source lightweight local message bus library</Description>
<Title>Microsoft.Extensions.LocalMessage</Title>
<RootNamespace>Microsoft.Extensions.LocalMessage</RootNamespace>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/june-it/MyStack.LocalMessage.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>MyStack.LocalMessage</Title>
<Version>1.0.3</Version>
<Authors>Jun Wan</Authors>
<Company>Jun Wan</Company>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>NUGET.md</PackageReadmeFile>
<Description>Open-source lightweight local message bus library</Description>
<Title>Microsoft.Extensions.LocalMessage</Title>
<RootNamespace>Microsoft.Extensions.LocalMessage</RootNamespace>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/june-it/MyStack.LocalMessage.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageTags>MyStack;Local Message;Event;CQRS;Event bus;Request</PackageTags>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\NUGET.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\NUGET.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
</ItemGroup>
</Project>

0 comments on commit 919e0d9

Please sign in to comment.