-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpack.props
More file actions
26 lines (26 loc) · 1.08 KB
/
pack.props
File metadata and controls
26 lines (26 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project>
<Import Project="versions.props" />
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Elton Schivei Costa</Authors>
<Product>Mediator Package</Product>
<Title>NetMediate</Title>
<Description>Mediator alternative for MediatR.</Description>
<PackageTags>Mediator</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/schivei/net-mediate</PackageProjectUrl>
<RepositoryUrl>https://github.com/schivei/net-mediate</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<DebugType>Full</DebugType>
<IsPackable>true</IsPackable>
<PackOnBuild>true</PackOnBuild>
<PackageVersion>$(Version)</PackageVersion>
<ReleaseVersion>$(Version)</ReleaseVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>$(NoWarn);nullable</NoWarn>
<TargetFrameworks>net10.0;netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
</Project>