embeddedaichatux 1.5.2 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/EmbeddedChat.js CHANGED
@@ -16,14 +16,15 @@
16
16
  this.minimizedHeight = `${this.height * 0.3}px`; // 30% of the full height
17
17
  this.mouseInsideChat = false;
18
18
  this.hasRefreshed = false; // Flag to prevent endless loop
19
+ this.conversationId = null;
19
20
 
20
21
  // Determine transition styles
21
22
  const transitionStyle = this.enableAnimation ? 'transition: height 0.3s ease, opacity 0.3s ease;' : '';
22
23
 
23
24
  this.positionStyle = this.containerDiv.dataset.position === 'in-place' ?
24
25
  `width:100%; height:${this.height}px; ${transitionStyle}` :
25
- `position: fixed; right: 0; bottom: 0; width: ${this.width}px; height: ${this.height}px; z-index: 100000; max-height:80%; ${transitionStyle}`;
26
- this.mode = options.mode || 'Chat'; // default to 'chat' if mode isn't provided
26
+ `position: fixed; right: 1em; bottom: 0; width: ${this.width}px; height: ${this.height}px; z-index: 100000; max-width:80%; ${transitionStyle}`;
27
+ this.mode = options.mode || 'Chat'; // default to 'chat'
27
28
  this.minimizeOnScroll = false; // Default to false
28
29
  if (this.mode === 'ContactForm') {
29
30
  // Adjust position style for contact form if mode is 'ContactForm'
@@ -32,7 +33,6 @@
32
33
  }
33
34
 
34
35
  this.conversationId = this.getStoredConversationId();
35
-
36
36
  this.sessionInfo = options.sessionInfo || null;
37
37
  this.init();
38
38
  }
@@ -44,7 +44,8 @@
44
44
 
45
45
  getStoredConversationId() {
46
46
  try {
47
- return localStorage.getItem(`conversationId_${this.chatId}`);
47
+ const storedId = localStorage.getItem(`conversationId_${this.chatId}`);
48
+ return storedId;
48
49
  } catch (error) {
49
50
  console.error('Error accessing localStorage:', error);
50
51
  return null;
@@ -59,6 +60,15 @@
59
60
  }
60
61
  }
61
62
 
63
+ setConversationId(newConversationId) {
64
+ const previousId = this.conversationId || 'null';
65
+
66
+ if (newConversationId !== previousId) {
67
+ this.conversationId = newConversationId;
68
+ this.setStoredConversationId(newConversationId);
69
+ }
70
+ }
71
+
62
72
  init() {
63
73
  this.updateIframes();
64
74
  this.addEventListeners();
@@ -80,7 +90,6 @@
80
90
  }
81
91
 
82
92
  addEventListeners() {
83
- // Add event listeners to track mouse position
84
93
  this.iframe.addEventListener("mouseenter", () => { this.mouseInsideChat = true; });
85
94
  this.iframe.addEventListener("mouseleave", () => { this.mouseInsideChat = false; });
86
95
  this.minimizedIframe.addEventListener("mouseenter", () => { this.mouseInsideChat = true; });
@@ -99,9 +108,30 @@
99
108
 
100
109
  handleMessage(e) {
101
110
  if (typeof e.data === "object" && (!e.data.chatId || e.data.chatId === this.chatId)) {
111
+ const updates = {};
112
+
113
+ // Preserve minimize on scroll functionality
102
114
  if (e.data.type === "setMinimizeOnScroll") {
103
115
  this.minimizeOnScroll = e.data.value === "true";
104
116
  }
117
+
118
+ // Collect updates for locale, width, and scale
119
+ if (e.data.locale) {
120
+ updates.locale = e.data.locale;
121
+ }
122
+ if (e.data.width) {
123
+ updates.width = e.data.width;
124
+ }
125
+ if (e.data.scale) {
126
+ updates.scale = e.data.scale;
127
+ }
128
+
129
+ // Apply iframe updates (locale, width, scale) in one go
130
+ if (Object.keys(updates).length > 0) {
131
+ this.applyIframeUpdates(updates);
132
+ }
133
+
134
+ // Handle maximize/minimize
105
135
  if (e.data.message) {
106
136
  if (e.data.message === "minimize") {
107
137
  if (this.mode !== 'ContactForm') {
@@ -110,18 +140,14 @@
110
140
  } else if (e.data.message === "show" || e.data.message === "maximize") {
111
141
  this.showMaximized();
112
142
  }
113
- if (e.data.scale) {
114
- this.applyScale(e.data.scale);
115
- }
116
- if (this.sessionInfo !== null) {
117
- this.setSessionInfo(this.sessionInfo);
118
- }
119
- if (e.data.message === "show" && e.data.conversationId) {
120
- this.conversationId = e.data.conversationId;
121
- this.setStoredConversationId(this.conversationId);
122
- }
143
+ }
144
+
145
+ // Handle conversationId update
146
+ if (e.data.conversationId) {
147
+ this.setConversationId(e.data.conversationId);
123
148
  }
124
149
  } else if (typeof e.data === "string") {
150
+ // Preserve original handling for string messages
125
151
  if (e.data === "minimize") {
126
152
  this.animateMinimize();
127
153
  } else if (e.data === "show" || e.data === "maximize") {
@@ -133,17 +159,59 @@
133
159
  animateMinimize() {
134
160
  if (this.mode !== 'ContactForm') {
135
161
  this.iframe.style.height = this.minimizedHeight;
136
- this.iframe.style.opacity = '0'; // Full transparency at the end
162
+ this.iframe.style.opacity = '0';
137
163
  setTimeout(() => {
138
164
  this.iframe.style.display = "none";
139
- this.iframe.style.opacity = '1'; // Reset opacity to 1 for next time
165
+ this.iframe.style.opacity = '1';
140
166
  this.minimizedIframe.style.display = "block";
141
167
  this.minimizedIframe.style.height = this.minimizedHeight;
142
- this.minimizedIframe.style.opacity = '1'; // Reset opacity to 1
143
- }, this.enableAnimation ? 300 : 0); // Match the transition duration
168
+ this.minimizedIframe.style.opacity = '1';
169
+ }, this.enableAnimation ? 300 : 0);
144
170
  }
145
171
  }
146
172
 
173
+ applyIframeUpdates({ locale, width, scale } = {}) {
174
+ // Update locale if provided and different (but do not update the iframe URL)
175
+ if (locale && typeof locale === 'string' && locale !== this.locale) {
176
+ this.locale = locale;
177
+ console.log(`Locale stored locally: ${this.locale}`);
178
+ }
179
+
180
+ // Update width if provided and different
181
+ const parsedWidth = parseInt(width, 10);
182
+ if (!isNaN(parsedWidth) && parsedWidth > 0 && parsedWidth !== this.width) {
183
+ this.width = Math.max(parsedWidth, 320);
184
+ console.log(`Width updated to: ${this.width}px`);
185
+
186
+ // Apply width to container
187
+ this.containerDiv.style.width = `${this.width}px`;
188
+
189
+ // Apply width to the main iframe
190
+ if (this.iframe) {
191
+ this.iframe.style.width = `${this.width}px`;
192
+ }
193
+
194
+ // Apply width to the minimized iframe
195
+ if (this.minimizedIframe) {
196
+ this.minimizedIframe.style.width = `${this.width}px`;
197
+ }
198
+ }
199
+
200
+ // Apply scale if provided
201
+ if (typeof scale === 'number' && scale > 0) {
202
+ if (this.iframe) {
203
+ this.iframe.style.transform = `scale(${scale})`;
204
+ this.iframe.style.transformOrigin = "bottom right";
205
+ }
206
+ if (this.minimizedIframe) {
207
+ this.minimizedIframe.style.transform = `scale(${scale})`;
208
+ this.minimizedIframe.style.transformOrigin = "bottom right";
209
+ }
210
+ console.log(`Scale applied: ${scale}`);
211
+ }
212
+ }
213
+
214
+
147
215
  showMaximized() {
148
216
  this.minimizedIframe.style.display = "none";
149
217
 
@@ -162,6 +230,8 @@
162
230
 
163
231
  this.iframe.style.height = `${this.height}px`;
164
232
  this.iframe.style.opacity = '1';
233
+
234
+ this.iframe.contentWindow.postMessage({ message: "show" }, "*");
165
235
  }
166
236
 
167
237
  applyScale(scale) {
@@ -187,7 +257,6 @@
187
257
  const iframe = this.containerDiv.querySelector("#embedded-chat");
188
258
 
189
259
  const postMessage = () => {
190
- console.log('Posting message to iframe:', { type: 'setSessionInfo', sessionInfo: sessionInfo });
191
260
  iframe.contentWindow.postMessage({ type: 'setSessionInfo', sessionInfo: sessionInfo }, "*");
192
261
  };
193
262
 
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "embeddedaichatux",
3
- "version": "1.5.2",
3
+ "version": "1.7.0",
4
4
  "description": "A lightweight and customizable embedded AI chat UI component that seamlessly integrates into web applications, offering minimized and expanded views, with iframe-based content rendering.",
5
5
  "main": "EmbeddedChat.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
8
8
  },
9
9
  "author": "EmbedGPT.chat, LLC",
10
- "license": "MIT"
10
+ "license": "MIT",
11
+ "files": [
12
+ "EmbeddedChat.js"
13
+ ]
11
14
  }
package/AIChat.npm.csproj DELETED
@@ -1,29 +0,0 @@
1
- <Project Sdk="Microsoft.NET.Sdk.Web">
2
-
3
- <PropertyGroup>
4
- <TargetFramework>net7.0</TargetFramework>
5
- <Nullable>enable</Nullable>
6
- <ImplicitUsings>enable</ImplicitUsings>
7
- </PropertyGroup>
8
-
9
- <Target Name="CopyCommonWebFiles" BeforeTargets="Build">
10
- <ItemGroup>
11
- <_CommonWebJsFiles Include="..\AIChat.Web\wwwroot\js\EmbeddedChat.js" />
12
- </ItemGroup>
13
-
14
- <Copy SourceFiles="@(_CommonWebJsFiles)" DestinationFolder="$(MSBuildProjectDirectory)" SkipUnchangedFiles="true" />
15
- </Target>
16
-
17
- <ItemGroup>
18
- <None Remove="EmbeddedChat.js" />
19
- </ItemGroup>
20
-
21
- <ItemGroup>
22
- <Content Include="EmbeddedChat.js">
23
- <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
24
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
25
- </Content>
26
- </ItemGroup>
27
-
28
-
29
- </Project>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <PropertyGroup>
4
- <ActiveDebugProfile>https</ActiveDebugProfile>
5
- </PropertyGroup>
6
- </Project>
package/AIChat.npm.sln DELETED
@@ -1,25 +0,0 @@
1
- 
2
- Microsoft Visual Studio Solution File, Format Version 12.00
3
- # Visual Studio Version 17
4
- VisualStudioVersion = 17.7.34024.191
5
- MinimumVisualStudioVersion = 10.0.40219.1
6
- Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AIChat.npm", "AIChat.npm.csproj", "{37DB7D9F-39C4-428D-A205-7E78FAB8BB25}"
7
- EndProject
8
- Global
9
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
10
- Debug|Any CPU = Debug|Any CPU
11
- Release|Any CPU = Release|Any CPU
12
- EndGlobalSection
13
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
14
- {37DB7D9F-39C4-428D-A205-7E78FAB8BB25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15
- {37DB7D9F-39C4-428D-A205-7E78FAB8BB25}.Debug|Any CPU.Build.0 = Debug|Any CPU
16
- {37DB7D9F-39C4-428D-A205-7E78FAB8BB25}.Release|Any CPU.ActiveCfg = Release|Any CPU
17
- {37DB7D9F-39C4-428D-A205-7E78FAB8BB25}.Release|Any CPU.Build.0 = Release|Any CPU
18
- EndGlobalSection
19
- GlobalSection(SolutionProperties) = preSolution
20
- HideSolutionNode = FALSE
21
- EndGlobalSection
22
- GlobalSection(ExtensibilityGlobals) = postSolution
23
- SolutionGuid = {33D9F6CE-532F-4C22-AAAD-2D8B3BB56596}
24
- EndGlobalSection
25
- EndGlobal
@@ -1,37 +0,0 @@
1
- {
2
- "iisSettings": {
3
- "windowsAuthentication": false,
4
- "anonymousAuthentication": true,
5
- "iisExpress": {
6
- "applicationUrl": "http://localhost:27434",
7
- "sslPort": 44389
8
- }
9
- },
10
- "profiles": {
11
- "http": {
12
- "commandName": "Project",
13
- "dotnetRunMessages": true,
14
- "launchBrowser": true,
15
- "applicationUrl": "http://localhost:5103",
16
- "environmentVariables": {
17
- "ASPNETCORE_ENVIRONMENT": "Development"
18
- }
19
- },
20
- "https": {
21
- "commandName": "Project",
22
- "dotnetRunMessages": true,
23
- "launchBrowser": true,
24
- "applicationUrl": "https://localhost:7299;http://localhost:5103",
25
- "environmentVariables": {
26
- "ASPNETCORE_ENVIRONMENT": "Development"
27
- }
28
- },
29
- "IIS Express": {
30
- "commandName": "IISExpress",
31
- "launchBrowser": true,
32
- "environmentVariables": {
33
- "ASPNETCORE_ENVIRONMENT": "Development"
34
- }
35
- }
36
- }
37
- }
@@ -1,72 +0,0 @@
1
- {
2
- "format": 1,
3
- "restore": {
4
- "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj": {}
5
- },
6
- "projects": {
7
- "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj": {
8
- "version": "1.0.0",
9
- "restore": {
10
- "projectUniqueName": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
11
- "projectName": "AIChat.npm",
12
- "projectPath": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
13
- "packagesPath": "C:\\Users\\esipo\\.nuget\\packages\\",
14
- "outputPath": "C:\\Git\\AIChat\\AIChat.npm\\obj\\",
15
- "projectStyle": "PackageReference",
16
- "configFilePaths": [
17
- "C:\\Users\\esipo\\AppData\\Roaming\\NuGet\\NuGet.Config",
18
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
19
- ],
20
- "originalTargetFrameworks": [
21
- "net7.0"
22
- ],
23
- "sources": {
24
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
25
- "C:\\Program Files\\dotnet\\library-packs": {},
26
- "https://api.nuget.org/v3/index.json": {}
27
- },
28
- "frameworks": {
29
- "net7.0": {
30
- "targetAlias": "net7.0",
31
- "projectReferences": {}
32
- }
33
- },
34
- "warningProperties": {
35
- "warnAsError": [
36
- "NU1605"
37
- ]
38
- },
39
- "restoreAuditProperties": {
40
- "enableAudit": "true",
41
- "auditLevel": "low",
42
- "auditMode": "direct"
43
- }
44
- },
45
- "frameworks": {
46
- "net7.0": {
47
- "targetAlias": "net7.0",
48
- "imports": [
49
- "net461",
50
- "net462",
51
- "net47",
52
- "net471",
53
- "net472",
54
- "net48",
55
- "net481"
56
- ],
57
- "assetTargetFallback": true,
58
- "warn": true,
59
- "frameworkReferences": {
60
- "Microsoft.AspNetCore.App": {
61
- "privateAssets": "none"
62
- },
63
- "Microsoft.NETCore.App": {
64
- "privateAssets": "all"
65
- }
66
- },
67
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.302\\RuntimeIdentifierGraph.json"
68
- }
69
- }
70
- }
71
- }
72
- }
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
- <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
- <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5
- <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6
- <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7
- <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8
- <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\esipo\.nuget\packages\</NuGetPackageFolders>
9
- <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10
- <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.1</NuGetToolVersion>
11
- </PropertyGroup>
12
- <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13
- <SourceRoot Include="C:\Users\esipo\.nuget\packages\" />
14
- </ItemGroup>
15
- </Project>
@@ -1,2 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
- <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
@@ -1,4 +0,0 @@
1
- // <autogenerated />
2
- using System;
3
- using System.Reflection;
4
- [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
@@ -1,23 +0,0 @@
1
- //------------------------------------------------------------------------------
2
- // <auto-generated>
3
- // This code was generated by a tool.
4
- // Runtime Version:4.0.30319.42000
5
- //
6
- // Changes to this file may cause incorrect behavior and will be lost if
7
- // the code is regenerated.
8
- // </auto-generated>
9
- //------------------------------------------------------------------------------
10
-
11
- using System;
12
- using System.Reflection;
13
-
14
- [assembly: System.Reflection.AssemblyCompanyAttribute("AIChat.npm")]
15
- [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16
- [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17
- [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ed2e2b2718adc480daaa0babfd2447befc969197")]
18
- [assembly: System.Reflection.AssemblyProductAttribute("AIChat.npm")]
19
- [assembly: System.Reflection.AssemblyTitleAttribute("AIChat.npm")]
20
- [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21
-
22
- // Generated by the MSBuild WriteCodeFragment class.
23
-
@@ -1 +0,0 @@
1
- f06fa2a1072fc32fb1c791674c951c64759966ce991b3d6dc890b7fc56801ae1
@@ -1,19 +0,0 @@
1
- is_global = true
2
- build_property.TargetFramework = net7.0
3
- build_property.TargetPlatformMinVersion =
4
- build_property.UsingMicrosoftNETSdkWeb = true
5
- build_property.ProjectTypeGuids =
6
- build_property.InvariantGlobalization =
7
- build_property.PlatformNeutralAssembly =
8
- build_property.EnforceExtendedAnalyzerRules =
9
- build_property._SupportedPlatformList = Linux,macOS,Windows
10
- build_property.RootNamespace = AIChat.npm
11
- build_property.RootNamespace = AIChat.npm
12
- build_property.ProjectDir = C:\Git\AIChat\AIChat.npm\
13
- build_property.EnableComHosting =
14
- build_property.EnableGeneratedComInterfaceComImportInterop =
15
- build_property.RazorLangVersion = 7.0
16
- build_property.SupportLocalizedComponentNames =
17
- build_property.GenerateRazorMetadataSourceChecksumAttributes =
18
- build_property.MSBuildProjectDirectory = C:\Git\AIChat\AIChat.npm
19
- build_property._RazorSourceGeneratorDebug =
@@ -1,17 +0,0 @@
1
- // <auto-generated/>
2
- global using global::Microsoft.AspNetCore.Builder;
3
- global using global::Microsoft.AspNetCore.Hosting;
4
- global using global::Microsoft.AspNetCore.Http;
5
- global using global::Microsoft.AspNetCore.Routing;
6
- global using global::Microsoft.Extensions.Configuration;
7
- global using global::Microsoft.Extensions.DependencyInjection;
8
- global using global::Microsoft.Extensions.Hosting;
9
- global using global::Microsoft.Extensions.Logging;
10
- global using global::System;
11
- global using global::System.Collections.Generic;
12
- global using global::System.IO;
13
- global using global::System.Linq;
14
- global using global::System.Net.Http;
15
- global using global::System.Net.Http.Json;
16
- global using global::System.Threading;
17
- global using global::System.Threading.Tasks;
@@ -1,77 +0,0 @@
1
- {
2
- "version": 3,
3
- "targets": {
4
- "net7.0": {}
5
- },
6
- "libraries": {},
7
- "projectFileDependencyGroups": {
8
- "net7.0": []
9
- },
10
- "packageFolders": {
11
- "C:\\Users\\esipo\\.nuget\\packages\\": {}
12
- },
13
- "project": {
14
- "version": "1.0.0",
15
- "restore": {
16
- "projectUniqueName": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
17
- "projectName": "AIChat.npm",
18
- "projectPath": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
19
- "packagesPath": "C:\\Users\\esipo\\.nuget\\packages\\",
20
- "outputPath": "C:\\Git\\AIChat\\AIChat.npm\\obj\\",
21
- "projectStyle": "PackageReference",
22
- "configFilePaths": [
23
- "C:\\Users\\esipo\\AppData\\Roaming\\NuGet\\NuGet.Config",
24
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
25
- ],
26
- "originalTargetFrameworks": [
27
- "net7.0"
28
- ],
29
- "sources": {
30
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
31
- "C:\\Program Files\\dotnet\\library-packs": {},
32
- "https://api.nuget.org/v3/index.json": {}
33
- },
34
- "frameworks": {
35
- "net7.0": {
36
- "targetAlias": "net7.0",
37
- "projectReferences": {}
38
- }
39
- },
40
- "warningProperties": {
41
- "warnAsError": [
42
- "NU1605"
43
- ]
44
- },
45
- "restoreAuditProperties": {
46
- "enableAudit": "true",
47
- "auditLevel": "low",
48
- "auditMode": "direct"
49
- }
50
- },
51
- "frameworks": {
52
- "net7.0": {
53
- "targetAlias": "net7.0",
54
- "imports": [
55
- "net461",
56
- "net462",
57
- "net47",
58
- "net471",
59
- "net472",
60
- "net48",
61
- "net481"
62
- ],
63
- "assetTargetFallback": true,
64
- "warn": true,
65
- "frameworkReferences": {
66
- "Microsoft.AspNetCore.App": {
67
- "privateAssets": "none"
68
- },
69
- "Microsoft.NETCore.App": {
70
- "privateAssets": "all"
71
- }
72
- },
73
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.302\\RuntimeIdentifierGraph.json"
74
- }
75
- }
76
- }
77
- }
@@ -1,8 +0,0 @@
1
- {
2
- "version": 2,
3
- "dgSpecHash": "LYPshyDILX4=",
4
- "success": true,
5
- "projectFilePath": "C:\\Git\\AIChat\\AIChat.npm\\AIChat.npm.csproj",
6
- "expectedPackageFiles": [],
7
- "logs": []
8
- }