Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OptimizelySDK.Package/OptimizelySDK.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<icon>OptimizelySDK.png</icon>
<iconUrl>https://github.com/optimizely/csharp-sdk/blob/master/OptimizelySDK.png?raw=true</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>C# SDK for Optimizely X Fullstack</description>
<description>C# SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts</description>
<releaseNotes>https://github.com/optimizely/csharp-sdk/blob/master/CHANGELOG.md</releaseNotes>
<copyright>Copyright 2017-2019</copyright>
<tags>Optimizely</tags>
Expand Down
2 changes: 1 addition & 1 deletion OptimizelySDK/Config/DatafileProjectConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public enum OPTLYSDKVersion
public string AccountId { get; set; }

/// <summary>
/// Project ID of the Full Stack project.
/// Project ID of the Optimizely Feature Experimentation project.
/// </summary>
public string ProjectId { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion OptimizelySDK/Odp/OdpSegmentManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public List<string> FetchQualifiedSegments(string fsUserId,
/// Creates a key used to identify which user fetchQualifiedSegments should lookup and save to in the segments cache
/// </summary>
/// <param name="userKey">Always 'fs_user_id' (parameter for consistency with other SDKs)</param>
/// <param name="userValue">Arbitrary string representing the full stack user ID</param>
/// <param name="userValue">Arbitrary string representing the Optimizely Feature Experimentation user ID</param>
/// <returns>Concatenates inputs and returns the string "{userKey}-$-{userValue}"</returns>
private static string GetCacheKey(string userKey, string userValue)
{
Expand Down
2 changes: 1 addition & 1 deletion OptimizelySDK/Optimizely.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public static String SDK_VERSION
public bool Disposed { get; private set; }

/// <summary>
/// Optimizely constructor for managing Full Stack .NET projects.
/// Optimizely constructor for managing Optimizely Feature Experimentation .NET projects.
/// </summary>
/// <param name="datafile">string JSON string representing the project</param>
/// <param name="eventDispatcher">EventDispatcherInterface</param>
Expand Down
2 changes: 1 addition & 1 deletion OptimizelySDK/ProjectConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public interface ProjectConfig
string AccountId { get; set; }

/// <summary>
/// Project ID of the Full Stack project.
/// Project ID of the Optimizely Feature Experimentation project.
/// </summary>
string ProjectId { get; set; }

Expand Down