You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I generated a typeprovider using the dotnet template.
It was working fine until the 3rd party libraries were 'revved'.
Now, the typeprovider works in the test project in the IDE but the test project itself does not compile with dotnet build:
C:\Users\fwaris1\source\repos\SKProvider\tests\SKProvider.Tests\SKProvider.Tests.fs(25,11): error FS3033: The type provider 'SKProviderImplementation+SKTypeProvider' reported
an error: Could not load file or assembly 'Microsoft.SemanticKernel.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3'. The system cannot find
the file specified.
I have attached the output of "dotnet build -v d > out.txt".
I can see that the fsc command line args look fine. It seems when the typeprovider code tries to generate the types, it cannot find the assemblies that it needs at build time. (I don't think that the exact assembly it cannot find, matters here.)
Please provide the steps required to reproduce the problem
Set environment variable SK_SAMPLES_HOME to ** [your project root]/tests\SKProvider.Tests\skills**. The typeprovider 'test' project loads files from here for the provided types.
Description
I generated a typeprovider using the dotnet template.
It was working fine until the 3rd party libraries were 'revved'.
Now, the typeprovider works in the test project in the IDE but the test project itself does not compile with dotnet build:
I have attached the output of "dotnet build -v d > out.txt".
I can see that the fsc command line args look fine. It seems when the typeprovider code tries to generate the types, it cannot find the assemblies that it needs at build time. (I don't think that the exact assembly it cannot find, matters here.)
Please provide the steps required to reproduce the problem
Clone repo https://github.com/fwaris/SKProvider
Set environment variable SK_SAMPLES_HOME to ** [your project root]/tests\SKProvider.Tests\skills**. The typeprovider 'test' project loads files from here for the provided types.
Perform the usual build:
-- dotnet tool restore
-- dotnet paket update
-- dotnet build
The text was updated successfully, but these errors were encountered: