Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
chore: propagating common changes related to Env Props and Layers
Browse files Browse the repository at this point in the history
  • Loading branch information
tanderson-ld committed Oct 5, 2023
1 parent 2e7ae5e commit c0569e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/LaunchDarkly.ClientSdk/LaunchDarkly.ClientSdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RootNamespace>LaunchDarkly.Sdk.Client</RootNamespace>

<!-- fail if XML comments are missing or invalid -->
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
</PropertyGroup>
Expand All @@ -37,9 +37,9 @@
<Folder Include="Properties\" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Text.Json" Version="6.0.0" />
<PackageReference Include="LaunchDarkly.CommonSdk" Version="6.1.0" />
<PackageReference Include="LaunchDarkly.CommonSdk" Version="6.1.0-alpha.2" />
<PackageReference Include="LaunchDarkly.EventSource" Version="5.0.1" />
<PackageReference Include="LaunchDarkly.InternalSdk" Version="3.2.0" />
<PackageReference Include="LaunchDarkly.InternalSdk" Version="3.2.0-alpha.2" />
<PackageReference Include="LaunchDarkly.Logging" Version="2.0.0" />
<Compile Include="**\*.cs" Exclude="PlatformSpecific\*.cs;bin\**\*.cs;obj\**\*.cs" />
<Compile Include="PlatformSpecific\*.shared.cs" />
Expand Down
8 changes: 3 additions & 5 deletions src/LaunchDarkly.ClientSdk/Subsystems/SdkAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ namespace LaunchDarkly.Sdk.Client.Subsystems
{
internal static class SdkAttributes
{
internal static Layer Layer => new Layer
{
ApplicationInfo = new Props.Concrete<ApplicationInfo>(new ApplicationInfo(
internal static Layer Layer => new Layer(new ApplicationInfo(
SdkPackage.Name,
SdkPackage.Name,
SdkPackage.Version,
SdkPackage.Version))
};
SdkPackage.Version),
null, null);
}
}

0 comments on commit c0569e5

Please sign in to comment.