Skip to content

Commit 44d3763

Browse files
committed
modernize package manifest
1 parent d670028 commit 44d3763

File tree

8 files changed

+27
-186
lines changed

8 files changed

+27
-186
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 SocketLabs
3+
Copyright © 2018-2022 SocketLabs Acquisition LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![SocketLabs](https://static.socketlabs.com/logos/logo-dark-326x64.png)](https://www.socketlabs.com/developers)
2-
# [![Twitter Follow](https://img.shields.io/twitter/follow/socketlabs.svg?style=social&label=Follow)](https://twitter.com/socketlabs) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/socketlabs/socketlabs-csharp/blob/master/CONTRIBUTING.md)
2+
# [![Twitter Follow](https://img.shields.io/twitter/follow/socketlabs.svg?style=social&label=Follow)](https://twitter.com/socketlabs) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/socketlabs/socketlabs-csharp/blob/master/CONTRIBUTING.md)
33
<!--
44
[![GitHub contributors](https://img.shields.io/github/contributors/socketlabs/csharp-socketlabs.svg)](https://github.com/socketlabs/csharp-socketlabs/graphs/contributors)
55
-->

docs/images/icon.png

3.13 KB
Loading

manifest/icon.png

-13.4 KB
Binary file not shown.

manifest/license.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

manifest/readme.txt

Lines changed: 0 additions & 75 deletions
This file was deleted.

manifest/socketlabs.nuspec

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/SocketLabs/SocketLabs.csproj

Lines changed: 25 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -5,66 +5,42 @@
55
<PlatformTarget>anycpu</PlatformTarget>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<AssemblyName>SocketLabs</AssemblyName>
8-
<PackageId>SocketLabs</PackageId>
8+
<PackageId>SocketLabs.EmailDelivery</PackageId>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
1010
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
11-
<Version>1.2.3</Version>
11+
<Version>1.3.0</Version>
1212
<Copyright>Copyright © 2018-2022 SocketLabs Acquisition LLC</Copyright>
13-
<PackageIconUrl>https://www.socketlabs.com/assets/socketlabs-logo1.png</PackageIconUrl>
14-
<Authors>SocketLabs Development Team</Authors>
15-
<Product>SocketLabs .Net Client Library</Product>
16-
<NoWarn></NoWarn>
17-
<TeamCityBuild>false</TeamCityBuild>
18-
<AssemblyVersion>1.2.1</AssemblyVersion>
19-
<FileVersion>1.2.1</FileVersion>
13+
<Authors>Joe Cooper, David Schrenker, Matt Reibach, Ryan Lydzinski, Mike Goodfellow, Saranya Kavuri</Authors>
14+
<Product>SocketLabs .Net Client Library</Product>
15+
<AssemblyVersion>1.3.0</AssemblyVersion>
16+
<FileVersion>1.3.0</FileVersion>
17+
<Description>Easily send email messages using the SocketLabs Injection API.</Description>
18+
<RepositoryUrl>https://github.com/socketlabs/socketlabs-csharp</RepositoryUrl>
19+
<PackageProjectUrl>https://inject.docs.socketlabs.com/</PackageProjectUrl>
20+
<PackageIcon>icon.png</PackageIcon>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
22+
<PackageLicenseFile>..\..\LICENSE.md</PackageLicenseFile>
23+
<PackageTags>email;injection;api;library;client;</PackageTags>
2024
</PropertyGroup>
2125

22-
<PropertyGroup Condition="'$(TeamCitySignAssembly)' != ''">
23-
<SignAssembly>true</SignAssembly>
24-
<DelaySign>false</DelaySign>
25-
</PropertyGroup>
26-
27-
<PropertyGroup Condition=" '$(TEAMCITY_BUILD_PROPERTIES_FILE)' != ''">
28-
<TeamCityBuild>true</TeamCityBuild>
29-
</PropertyGroup>
30-
31-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.3|AnyCPU'">
32-
<WarningsAsErrors />
33-
</PropertyGroup>
34-
35-
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
36-
<Reference Include="System" />
37-
</ItemGroup>
38-
3926
<ItemGroup>
40-
<Compile Remove="help\**" />
41-
<EmbeddedResource Remove="help\**" />
42-
<None Remove="help\**" />
43-
</ItemGroup>
44-
45-
<ItemGroup>
46-
<Compile Remove="InjectionApi\BulkTemplateMessage.cs" />
47-
<Compile Remove="InjectionApi\MergeData.cs" />
48-
<Compile Remove="InjectionApi\MessageBase.cs" />
49-
<Compile Remove="InjectionApi\ValidationResponse.cs" />
50-
<Compile Remove="InjectionApi\ValidationResult.cs" />
51-
</ItemGroup>
52-
53-
54-
<ItemGroup>
55-
<None Include="SocketLabs.shfbproj" />
27+
<None Include="..\..\docs\images\icon.png">
28+
<Pack>True</Pack>
29+
<PackagePath>\</PackagePath>
30+
</None>
31+
<None Include="..\..\README.md">
32+
<Pack>True</Pack>
33+
<PackagePath>\</PackagePath>
34+
</None>
35+
<None Include="..\..\LICENSE.md">
36+
<Pack>False</Pack>
37+
<PackagePath>\</PackagePath>
38+
</None>
5639
</ItemGroup>
5740

5841
<ItemGroup>
5942
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
6043
<PackageReference Include="System.Net.Http" Version="4.3.4" />
6144
</ItemGroup>
6245

63-
<Target Name="TeamCity" AfterTargets="Build" Condition=" '$(TeamCityBuild)'=='true' AND '$(TargetFileName)' != ''">
64-
<GetAssemblyIdentity AssemblyFiles="bin\$(ConfigurationName)\$(TargetFramework)\$(TargetFileName)">
65-
<Output TaskParameter="Assemblies" ItemName="AssemblyIdentity" />
66-
</GetAssemblyIdentity>
67-
<Message Text="##teamcity[buildNumber '%(AssemblyIdentity.Version)']" />
68-
</Target>
69-
7046
</Project>

0 commit comments

Comments
 (0)