Skip to content

Commit

Permalink
add nuget package enrichments
Browse files Browse the repository at this point in the history
  • Loading branch information
Blind-Striker committed Feb 1, 2023
1 parent aa72f38 commit a3e6334
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
9 changes: 9 additions & 0 deletions LocalStack.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalStack.AwsLocal.Tests",
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{924DBE7D-09A6-4948-B616-3FA2025D5F94}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{E9C25D4B-E4C5-47EE-971C-C2A2BC9CA901}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalStack.Build", "build\LocalStack.Build\LocalStack.Build.csproj", "{D5A508CD-0098-4138-AD7D-49B98AE42503}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -23,12 +27,17 @@ Global
{1109B4DD-BD82-4759-981B-6EB1D474A200}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1109B4DD-BD82-4759-981B-6EB1D474A200}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1109B4DD-BD82-4759-981B-6EB1D474A200}.Release|Any CPU.Build.0 = Release|Any CPU
{D5A508CD-0098-4138-AD7D-49B98AE42503}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D5A508CD-0098-4138-AD7D-49B98AE42503}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D5A508CD-0098-4138-AD7D-49B98AE42503}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D5A508CD-0098-4138-AD7D-49B98AE42503}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{1109B4DD-BD82-4759-981B-6EB1D474A200} = {924DBE7D-09A6-4948-B616-3FA2025D5F94}
{D5A508CD-0098-4138-AD7D-49B98AE42503} = {E9C25D4B-E4C5-47EE-971C-C2A2BC9CA901}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {479893D2-EC31-4B10-8F7C-DDA704071C4D}
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<Owners>LocalStack.NET</Owners>
<PackageProjectUrl>https://github.com/localstack-dotnet/localstack-awscli-local</PackageProjectUrl>
<PackageIcon>localstack-dotnet-square.png</PackageIcon>
<Version>1.3</Version>
<Version>1.4</Version>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions src/LocalStack.AwsLocal/LocalStack.AwsLocal.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,38 @@
</Description>
<PackageTags>global-tool, wrapper, cli, aws-cli, dotnet, dotnet-core, localstack</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>

<Target Name="PreBuild" AfterTargets="PreBuildEvent">
<ItemGroup>
<LicenseFile Include="../../LICENSE" />
</ItemGroup>
<ItemGroup>
<ReadmeFile Include="../../README.md" />
</ItemGroup>
<Copy SourceFiles="@(LicenseFile)" DestinationFiles="@(LicenseFile->'./LICENSE.txt')" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(ReadmeFile)" DestinationFiles="@(ReadmeFile->'./README.md')" SkipUnchangedFiles="true" />
</Target>

<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="README.md" Pack="true" PackagePath="">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="../../assets/localstack-dotnet-square.png" Pack="true" PackagePath="" />
</ItemGroup>

Expand Down
12 changes: 6 additions & 6 deletions tests/LocalStack.AwsLocal.Tests/LocalStack.AwsLocal.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@


<ItemGroup>
<PackageReference Include="AWSSDK.Core" Version="3.7.2.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="AWSSDK.Core" Version="3.7.103.25" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
<PackageReference Include="xunit.runner.console" Version="2.4.1">
<PackageReference Include="xunit.runner.console" Version="2.4.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit a3e6334

Please sign in to comment.