Skip to content

Commit 1e7ffc5

Browse files
committed
fixes #13
1 parent ae614bf commit 1e7ffc5

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

src/LocalStack.Client.Extensions/LocalStack.Client.Extensions.csproj

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<AssemblyName>LocalStack.Client.Extensions</AssemblyName>
77
<RootNamespace>LocalStack.Client.Extensions</RootNamespace>
88
<LangVersion>latest</LangVersion>
9+
<Version>1.1.2</Version>
910

1011
<Title>LocalStack.NET Client</Title>
1112
<Description>
@@ -14,7 +15,13 @@
1415
<PackageTags>aws-sdk, localstack, client-library, dotnet, dotnet-core</PackageTags>
1516
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
1617
<PackageReadmeFile>README.md</PackageReadmeFile>
17-
<Version>1.1.2</Version>
18+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
19+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
20+
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
21+
</PropertyGroup>
22+
23+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
24+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
1825
</PropertyGroup>
1926

2027
<ItemGroup>

src/LocalStack.Client/LocalStack.Client.csproj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,20 @@
1414
<PackageTags>aws-sdk, localstack, client-library, dotnet, dotnet-core</PackageTags>
1515
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
1616
<PackageReadmeFile>README.md</PackageReadmeFile>
17+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
18+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
19+
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
20+
</PropertyGroup>
21+
22+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
23+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
1724
</PropertyGroup>
1825

1926
<ItemGroup>
2027
<PackageReference Include="AWSSDK.Core" Version="3.7.3.15" />
2128
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
2229
</ItemGroup>
2330

24-
2531
<Target Name="PreBuild" AfterTargets="PreBuildEvent">
2632
<ItemGroup>
2733
<LicenseFile Include="../../LICENSE" />
@@ -43,7 +49,6 @@
4349
<None Include="../../assets/localstack-dotnet-square.png" Pack="true" PackagePath="" />
4450
</ItemGroup>
4551

46-
4752
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
4853
<DefineConstants>NET461</DefineConstants>
4954
</PropertyGroup>

0 commit comments

Comments
 (0)