|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netcoreapp3.1</TargetFramework> |
5 | | - </PropertyGroup> |
| 3 | + <Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec"> |
| 4 | + <ReadLinesFromFile File="../RELEASE-NOTES.txt" > |
| 5 | + <Output TaskParameter="Lines" ItemName="ReleaseNoteLines"/> |
| 6 | + </ReadLinesFromFile> |
| 7 | + <PropertyGroup> |
| 8 | + <PackageDescription>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/PackageDescription.txt"))</PackageDescription> |
| 9 | + <Description>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/PackageDescription.txt"))</Description> |
| 10 | + </PropertyGroup> |
| 11 | + </Target> |
6 | 12 |
|
| 13 | + <PropertyGroup> |
| 14 | + <TargetFramework>netcoreapp3.1</TargetFramework> |
| 15 | + <OutputType>library</OutputType> |
| 16 | + <PackageId>BSG.Configuration.Providers.AwsSecretsManager</PackageId> |
| 17 | + <Version>1.0.0</Version> |
| 18 | + <Authors>@patrickvecchio</Authors> |
| 19 | + <Company>Patrick R. Vecchio</Company> |
| 20 | + <RepositoryUrl>https://github.com/patrickvecchio/CustomConfigurationProviders</RepositoryUrl> |
| 21 | + <AssemblyName>BSG.$(SolutionName).$(MSBuildProjectName)</AssemblyName> |
| 22 | + <PackageProjectUrl>https://github.com/patrickvecchio/CustomConfigurationProviders</PackageProjectUrl> |
| 23 | + <PackageTags>dotnet;microsoft-extensions-configuration;aws;aws-secrets-manager</PackageTags> |
| 24 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 25 | + </PropertyGroup> |
7 | 26 | <ItemGroup> |
8 | 27 | <PackageReference Include="AWSSDK.SecretsManager" Version="3.7.2.21" /> |
9 | 28 | <PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.23" /> |
|
13 | 32 | <Folder Include="AwsSecretsManager\" /> |
14 | 33 | </ItemGroup> |
15 | 34 |
|
| 35 | + <ItemGroup> |
| 36 | + <None Include="..\..\..\README.md"> |
| 37 | + <Pack>True</Pack> |
| 38 | + <PackagePath>\</PackagePath> |
| 39 | + </None> |
| 40 | + </ItemGroup> |
| 41 | + |
16 | 42 | </Project> |
0 commit comments