Skip to content

Commit d2c788e

Browse files
[FSSDK-8955] Refac: Replaced all instances of full stack from code comments and in nuspec except owner. (#332)
* [FSSDK-8955] Refac: Replaced all instances of full stack from code comments and in nuspec except owner. * Update OptimizelySDK.Package/OptimizelySDK.nuspec Co-authored-by: Russell Loube <118555704+russell-loube-optimizely@users.noreply.github.com> --------- Co-authored-by: Russell Loube <118555704+russell-loube-optimizely@users.noreply.github.com>
1 parent 5f16357 commit d2c788e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

OptimizelySDK.Package/OptimizelySDK.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<icon>OptimizelySDK.png</icon>
1212
<iconUrl>https://github.com/optimizely/csharp-sdk/blob/master/OptimizelySDK.png?raw=true</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<description>C# SDK for Optimizely X Fullstack</description>
14+
<description>C# SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts</description>
1515
<releaseNotes>https://github.com/optimizely/csharp-sdk/blob/master/CHANGELOG.md</releaseNotes>
1616
<copyright>Copyright 2017-2019</copyright>
1717
<tags>Optimizely</tags>

OptimizelySDK/Config/DatafileProjectConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public enum OPTLYSDKVersion
6363
public string AccountId { get; set; }
6464

6565
/// <summary>
66-
/// Project ID of the Full Stack project.
66+
/// Project ID of the Optimizely Feature Experimentation project.
6767
/// </summary>
6868
public string ProjectId { get; set; }
6969

OptimizelySDK/Odp/OdpSegmentManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public List<string> FetchQualifiedSegments(string fsUserId,
138138
/// Creates a key used to identify which user fetchQualifiedSegments should lookup and save to in the segments cache
139139
/// </summary>
140140
/// <param name="userKey">Always 'fs_user_id' (parameter for consistency with other SDKs)</param>
141-
/// <param name="userValue">Arbitrary string representing the full stack user ID</param>
141+
/// <param name="userValue">Arbitrary string representing the Optimizely Feature Experimentation user ID</param>
142142
/// <returns>Concatenates inputs and returns the string "{userKey}-$-{userValue}"</returns>
143143
private static string GetCacheKey(string userKey, string userValue)
144144
{

OptimizelySDK/Optimizely.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public static String SDK_VERSION
113113
public bool Disposed { get; private set; }
114114

115115
/// <summary>
116-
/// Optimizely constructor for managing Full Stack .NET projects.
116+
/// Optimizely constructor for managing Optimizely Feature Experimentation .NET projects.
117117
/// </summary>
118118
/// <param name="datafile">string JSON string representing the project</param>
119119
/// <param name="eventDispatcher">EventDispatcherInterface</param>

OptimizelySDK/ProjectConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public interface ProjectConfig
3232
string AccountId { get; set; }
3333

3434
/// <summary>
35-
/// Project ID of the Full Stack project.
35+
/// Project ID of the Optimizely Feature Experimentation project.
3636
/// </summary>
3737
string ProjectId { get; set; }
3838

0 commit comments

Comments
 (0)