-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
39 lines (33 loc) · 1.38 KB
/
Directory.Build.props
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
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project>
<PropertyGroup>
<Version>0.1.0</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>Filipe Toscano</Authors>
<Product>.NET client for Resend mail API</Product>
<Copyright>Copyright © Filipe Toscano</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/resend/resend-dotnet/</PackageProjectUrl>
<RepositoryUrl>https://github.com/resend/resend-dotnet.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<DebugType>portable</DebugType>
<!-- Packaging properties -->
<IsPackable>false</IsPackable>
<PackageDescription>.NET client for Resend mail API</PackageDescription>
<PackageIconUrl>https://media.githubusercontent.com/media/resend/resend-dotnet/master/docs/img/icon.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>email;resend</PackageTags>
<!-- Debuging properties -->
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup Condition=" '$(IsPackable)' == 'true' ">
<None Include="$(MSBuildThisFileDirectory)docs\img\icon.png">
<Pack>true</Pack>
<PackagePath>/$(PackageIcon)</PackagePath>
<Visible>false</Visible>
</None>
</ItemGroup>
</Project>