C
C#
help
✅ [.NET 7.02] Nuget Dependency version conflict
I got this trying to build my project, I'm trying to understand it but cant figure out which two dependencies which collide :c
I'm also on .NET 7, but it sais .NET 6 in here?
Found conflicts between different versions of "Microsoft.EntityFrameworkCore.Relational" that could not be resolved.
There was a conflict between "Microsoft.EntityFrameworkCore.Relational, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" and "Microsoft.EntityFrameworkCore.Relational, Version=7.0.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60".
"Microsoft.EntityFrameworkCore.Relational, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was chosen because it was primary and "Microsoft.EntityFrameworkCore.Relational, Version=7.0.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was not.
References which depend on "Microsoft.EntityFrameworkCore.Relational, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" [C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll].
C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
Project file item includes which caused reference "C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll".
C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
References which depend on "Microsoft.EntityFrameworkCore.Relational, Version=7.0.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" [].
H:\Source\web\Opto\backend\bin\Debug\net7.0\Server.dll
Project file item includes which caused reference "H:\Source\web\Opto\backend\bin\Debug\net7.0\Server.dll".
H:\Source\web\Opto\backend\bin\Debug\net7.0\Server.dll
Found conflicts between different versions of "Microsoft.EntityFrameworkCore.Relational" that could not be resolved.
There was a conflict between "Microsoft.EntityFrameworkCore.Relational, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" and "Microsoft.EntityFrameworkCore.Relational, Version=7.0.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60".
"Microsoft.EntityFrameworkCore.Relational, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was chosen because it was primary and "Microsoft.EntityFrameworkCore.Relational, Version=7.0.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was not.
References which depend on "Microsoft.EntityFrameworkCore.Relational, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" [C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll].
C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
Project file item includes which caused reference "C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll".
C:\Users\eirik\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.1\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
References which depend on "Microsoft.EntityFrameworkCore.Relational, Version=7.0.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" [].
H:\Source\web\Opto\backend\bin\Debug\net7.0\Server.dll
Project file item includes which caused reference "H:\Source\web\Opto\backend\bin\Debug\net7.0\Server.dll".
H:\Source\web\Opto\backend\bin\Debug\net7.0\Server.dll

Message Not Public
Sign In & Join Server To View
both?
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Server</AssemblyName>
<RootNamespace>Opto</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<NoWarn>1591;1701</NoWarn>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="7.0.0" />
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.2" />
<PackageReference Include="AWSSDK.S3" Version="3.7.101.58" />
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="7.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.IdentityModel.Logging" Version="6.26.0" />
<PackageReference Include="NetMQ" Version="4.0.1.10" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
<PackageReference Include="PreMailer.Net" Version="2.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>
<Target Name="openapi" AfterTargets="Build">
<Message Text="generating openapi" Importance="high" />
<Exec Command="dotnet tool run swagger tofile --yaml --output $(ProjectDir)..\frontend\api\openapi.yaml $(OutputPath)$(AssemblyName).dll v1" />
</Target>
</Project>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Server</AssemblyName>
<RootNamespace>Opto</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<NoWarn>1591;1701</NoWarn>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="7.0.0" />
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.2" />
<PackageReference Include="AWSSDK.S3" Version="3.7.101.58" />
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="7.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.IdentityModel.Logging" Version="6.26.0" />
<PackageReference Include="NetMQ" Version="4.0.1.10" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
<PackageReference Include="PreMailer.Net" Version="2.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>
<Target Name="openapi" AfterTargets="Build">
<Message Text="generating openapi" Importance="high" />
<Exec Command="dotnet tool run swagger tofile --yaml --output $(ProjectDir)..\frontend\api\openapi.yaml $(OutputPath)$(AssemblyName).dll v1" />
</Target>
</Project>
Should be able to just add an explicit PackageReference to the newer version in your project.
To resolve the conflict.
Message Not Public
Sign In & Join Server To View
PS H:\Source\web\Opto> dotnet list package --outdated
The following sources were used:
https://api.nuget.org/v3/index.json
C:\Program Files (x86)\Microsoft SDKs\NuGetPackages\
The project `H:\Source\web\Opto\frontend\Frontend.esproj` uses package.config for NuGet packages, while the command works only with package reference projects.
The given project `Backend` has no updates given the current sources.
The given project `Backend.Tests` has no updates given the current sources.
PS H:\Source\web\Opto> dotnet list package --outdated
The following sources were used:
https://api.nuget.org/v3/index.json
C:\Program Files (x86)\Microsoft SDKs\NuGetPackages\
The project `H:\Source\web\Opto\frontend\Frontend.esproj` uses package.config for NuGet packages, while the command works only with package reference projects.
The given project `Backend` has no updates given the current sources.
The given project `Backend.Tests` has no updates given the current sources.
Message Not Public
Sign In & Join Server To View
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
2 Messages Not Public
Sign In & Join Server To View
doesnt help if i downgrade all the packages to 7.0.1
6 Messages Not Public
Sign In & Join Server To View
how to do this?
2 Messages Not Public
Sign In & Join Server To View
eh?
just make it 7.0.2? that hasnt released yet for that package
2 Messages Not Public
Sign In & Join Server To View
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
ok that fixed it for local
lets see if it fixes it for github actions
3 Messages Not Public
Sign In & Join Server To View
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<AssemblyName>Tests</AssemblyName>
<RootNamespace>Opto.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bogus" Version="34.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\backend\Backend.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="DataSet\**" Exclude="DataSet\.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="DataSet\Text\BlackList\Text\LeadingSpaces.txt" />
<None Remove="DataSet\Text\BlackList\Text\TrailingSpaces.txt" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<AssemblyName>Tests</AssemblyName>
<RootNamespace>Opto.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bogus" Version="34.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\backend\Backend.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="DataSet\**" Exclude="DataSet\.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="DataSet\Text\BlackList\Text\LeadingSpaces.txt" />
<None Remove="DataSet\Text\BlackList\Text\TrailingSpaces.txt" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/0.5.62-alpha">
<PropertyGroup>
<JavaScriptTestRoot>src\</JavaScriptTestRoot>
<JavaScriptTestFramework>Jest</JavaScriptTestFramework>
<!-- Command to run on project build -->
<BuildCommand>
</BuildCommand>
<!-- Command to create an optimized build of the project that's ready for publishing -->
<ProductionBuildCommand>npm run build</ProductionBuildCommand>
<!-- Folder where production build objects will be placed -->
<BuildOutputFolder>$(MSBuildProjectDirectory)\build</BuildOutputFolder>
<StartupCommand>npm run start</StartupCommand>
</PropertyGroup>
</Project>
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/0.5.62-alpha">
<PropertyGroup>
<JavaScriptTestRoot>src\</JavaScriptTestRoot>
<JavaScriptTestFramework>Jest</JavaScriptTestFramework>
<!-- Command to run on project build -->
<BuildCommand>
</BuildCommand>
<!-- Command to create an optimized build of the project that's ready for publishing -->
<ProductionBuildCommand>npm run build</ProductionBuildCommand>
<!-- Folder where production build objects will be placed -->
<BuildOutputFolder>$(MSBuildProjectDirectory)\build</BuildOutputFolder>
<StartupCommand>npm run start</StartupCommand>
</PropertyGroup>
</Project>
Message Not Public
Sign In & Join Server To View
in the first place, no
but now i did yeah
Message Not Public
Sign In & Join Server To View
tbh it happened in github workflows first
Message Not Public
Sign In & Join Server To View
then i somehow replicated it on my local computer
but idk how
Message Not Public
Sign In & Join Server To View
name: test backend
# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on:
push:
branches: [ "main", "dev", "feature/*" ]
pull_request:
branches: [ "main", "dev" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET Framework SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
- name: Install dependencies
run: |
dotnet restore
dotnet tool restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal
name: test backend
# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on:
push:
branches: [ "main", "dev", "feature/*" ]
pull_request:
branches: [ "main", "dev" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET Framework SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
- name: Install dependencies
run: |
dotnet restore
dotnet tool restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal
{
"sdk": {
"version": "7.0.102",
"rollForward": "latestFeature"
}
}
{
"sdk": {
"version": "7.0.102",
"rollForward": "latestFeature"
}
}
2 Messages Not Public
Sign In & Join Server To View
uhhH?
Message Not Public
Sign In & Join Server To View
right
uhm
🤔
2 Messages Not Public
Sign In & Join Server To View
yup
3 Messages Not Public
Sign In & Join Server To View
yeah forgot to remove that from the template i copied
6 Messages Not Public
Sign In & Join Server To View
i can build it locally rn
but github cant
Message Not Public
Sign In & Join Server To View

5 Messages Not Public
Sign In & Join Server To View
oh nvm now i have a weirder error
3 Messages Not Public
Sign In & Join Server To View
MSBuild version 17.4.1+9a89d02ff for .NET
/usr/share/dotnet/sdk/7.0.102/Microsoft.Common.CurrentVersion.targets(1229,5): error MSB3644: The reference assemblies for .NETFramework,Version=v4.7.2 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks [/home/runner/work/Opto/Opto/frontend/Frontend.esproj]
Backend -> /home/runner/work/Opto/Opto/backend/bin/Release/net7.0/Server.dll
generating openapi
[2023-01-23 20:22:57.538] warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
No XML encryptor configured. Key {b7f9451a-7835-49e1-98e9-8621b54ceb27} may be persisted to storage in unencrypted form.
Swagger JSON/YAML successfully written to /home/runner/work/Opto/Opto/backend/../frontend/api/openapi.yaml
Backend.Tests -> /home/runner/work/Opto/Opto/backend.tests/bin/Release/net7.0/Tests.dll
Build FAILED.
/usr/share/dotnet/sdk/7.0.102/Microsoft.Common.CurrentVersion.targets(1229,5): error MSB3644: The reference assemblies for .NETFramework,Version=v4.7.2 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks [/home/runner/work/Opto/Opto/frontend/Frontend.esproj]
0 Warning(s)
1 Error(s)
Time Elapsed 00:00:12.39
MSBuild version 17.4.1+9a89d02ff for .NET
/usr/share/dotnet/sdk/7.0.102/Microsoft.Common.CurrentVersion.targets(1229,5): error MSB3644: The reference assemblies for .NETFramework,Version=v4.7.2 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks [/home/runner/work/Opto/Opto/frontend/Frontend.esproj]
Backend -> /home/runner/work/Opto/Opto/backend/bin/Release/net7.0/Server.dll
generating openapi
[2023-01-23 20:22:57.538] warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
No XML encryptor configured. Key {b7f9451a-7835-49e1-98e9-8621b54ceb27} may be persisted to storage in unencrypted form.
Swagger JSON/YAML successfully written to /home/runner/work/Opto/Opto/backend/../frontend/api/openapi.yaml
Backend.Tests -> /home/runner/work/Opto/Opto/backend.tests/bin/Release/net7.0/Tests.dll
Build FAILED.
/usr/share/dotnet/sdk/7.0.102/Microsoft.Common.CurrentVersion.targets(1229,5): error MSB3644: The reference assemblies for .NETFramework,Version=v4.7.2 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks [/home/runner/work/Opto/Opto/frontend/Frontend.esproj]
0 Warning(s)
1 Error(s)
Time Elapsed 00:00:12.39
Message Not Public
Sign In & Join Server To View
i dont know
github copilot spit it out
Message Not Public
Sign In & Join Server To View
new vs thingy
2 Messages Not Public
Sign In & Join Server To View
i cant remember messing with any xml encryption or any encyption at all
2 Messages Not Public
Sign In & Join Server To View
i specifically want identity long gone
Message Not Public
Sign In & Join Server To View
>/usr/share/dotnet/sdk/7.0.102/Microsoft.Common.CurrentVersion.targets(1229,5): error MSB3644: The reference assemblies for .NETFramework,Version=v4.7.2 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks [/home/runner/work/Opto/Opto/frontend/Frontend.esproj]
oh
3 Messages Not Public
Sign In & Join Server To View
github doesnt support 7.0.2?
3 Messages Not Public
Sign In & Join Server To View
that should work fine
ive think ive compiled this on ubuntu before
5 Messages Not Public
Sign In & Join Server To View
oof
sure thats it tho?
7 Messages Not Public
Sign In & Join Server To View
can i make it only target windows?
Message Not Public
Sign In & Join Server To View
dotnet
oops wrong window
6 Messages Not Public
Sign In & Join Server To View
ok
progress
2 Messages Not Public
Sign In & Join Server To View
i can replicate on Ubuntu 22 WSL
3 Messages Not Public
Sign In & Join Server To View
builds without esproj
window

5 Messages Not Public
Sign In & Join Server To View
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: '@jest/types@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'diff-sequences@29.2.0',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'expect@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-diff@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-get-type@29.2.0',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-matcher-utils@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-message-util@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-util@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'pretty-format@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'crypto-random-string@5.0.0',
npm WARN EBADENGINE required: { node: '>=14.16' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'eslint-config-react-app@7.0.1',
npm WARN EBADENGINE required: { node: '>=14.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-app-polyfill@3.0.0',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-dev-utils@12.0.1',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-router@6.4.2',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-router-dom@6.4.2',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: '@jest/types@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'diff-sequences@29.2.0',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'expect@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-diff@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-get-type@29.2.0',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-matcher-utils@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-message-util@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'jest-util@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'pretty-format@29.2.1',
npm WARN EBADENGINE required: { node: '^14.15.0 || ^16.10.0 || >=18.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'crypto-random-string@5.0.0',
npm WARN EBADENGINE required: { node: '>=14.16' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'eslint-config-react-app@7.0.1',
npm WARN EBADENGINE required: { node: '>=14.0.0' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-app-polyfill@3.0.0',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-dev-utils@12.0.1',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-router@6.4.2',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: 'react-router-dom@6.4.2',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }

Message Not Public
Sign In & Join Server To View
hmm

ouch
i dont know enough about frontend
3 Messages Not Public
Sign In & Join Server To View
that seems bad
2 Messages Not Public
Sign In & Join Server To View
optocloud@DESKTOP-3MKA4KA:~/Opto$ node -v
v12.22.9
optocloud@DESKTOP-3MKA4KA:~/Opto$ npm -v
8.5.1
optocloud@DESKTOP-3MKA4KA:~/Opto$ node -v
v12.22.9
optocloud@DESKTOP-3MKA4KA:~/Opto$ npm -v
8.5.1
5 Messages Not Public
Sign In & Join Server To View
OH
Message Not Public
Sign In & Join Server To View

5 Messages Not Public
Sign In & Join Server To View
im at 19.4 now
im in console
Message Not Public
Sign In & Join Server To View
its wsl
Message Not Public
Sign In & Join Server To View
18.13 now
5 Messages Not Public
Sign In & Join Server To View
yeahhhh
nightmares
2 Messages Not Public
Sign In & Join Server To View
mhm
7 Messages Not Public
Sign In & Join Server To View
yeah
it all builds btw, for some reason i needed to install java as well
have no idea

Heh I have my frontend files mixed in with the backend stuff, grouped by features
oh god
3 Messages Not Public
Sign In & Join Server To View

Features/Users/FrontEnd
Even more ban!Message Not Public
Sign In & Join Server To View
I'm committed to my feature folders!
Message Not Public
Sign In & Join Server To View

Message Not Public
Sign In & Join Server To View
I have no system
quite new to asp.net

2 Messages Not Public
Sign In & Join Server To View
i havent had any education in architecture
Message Not Public
Sign In & Join Server To View
https://www.youtube.com/watch?v=CwF8DYf5dDc
<:AA_Think:584639261194715156>
I'll figure it out
Message Not Public
Sign In & Join Server To View
yeah i have research to do
5 Messages Not Public
Sign In & Join Server To View
👋
5 Messages Not Public
Sign In & Join Server To View
uhm
gimme a sec
yml pipeline ended up like this
name: run tests
# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on:
push:
branches: ["main", "dev", "feature/*"]
pull_request:
branches: ["main", "dev"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET Framework SDK
uses: actions/setup-dotnet@v3
- name: Install dependencies
run: |
dotnet restore
dotnet tool restore
- name: Cache nuget packages
uses: actions/cache@v1
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} #hash of project files
restore-keys: |
${{ runner.os }}-nuget-
- name: Run tests
run: dotnet test --no-restore --verbosity normal
name: run tests
# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on:
push:
branches: ["main", "dev", "feature/*"]
pull_request:
branches: ["main", "dev"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET Framework SDK
uses: actions/setup-dotnet@v3
- name: Install dependencies
run: |
dotnet restore
dotnet tool restore
- name: Cache nuget packages
uses: actions/cache@v1
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} #hash of project files
restore-keys: |
${{ runner.os }}-nuget-
- name: Run tests
run: dotnet test --no-restore --verbosity normal
3 Messages Not Public
Sign In & Join Server To View
nono, its just a issue with something else...
i hope
:c
PS H:\Source\web\Opto> powershell.exe -File .\build.ps1 -ExecutionPolicy Bypass
Building backend...
Backend built!
Building frontend...
Building WASM...
[INFO]: Checking for the Wasm target...
[INFO]: Compiling to Wasm...
Finished release [optimized] target(s) in 0.25s
[WARN]: :-) origin crate has no README
[INFO]: License key is set in Cargo.toml but no LICENSE file(s) were found; Please add the LICENSE file(s) to your project directory
[INFO]: Installing wasm-bindgen...
[INFO]: Optimizing wasm binaries with `wasm-opt`...
[INFO]: :-) Done in 0.83s
[INFO]: :-) Your wasm pkg is ready to publish at H:\Source\web\Opto\frontend\wasm-lib\pkg.
Installing NPM packages...
Generating API...
Finalizing build...
Frontend built!
Copying frontend build to backend...
Frontend build copied!
PS H:\Source\web\Opto> powershell.exe -File .\build.ps1 -ExecutionPolicy Bypass
Building backend...
Backend built!
Building frontend...
Building WASM...
[INFO]: Checking for the Wasm target...
[INFO]: Compiling to Wasm...
Finished release [optimized] target(s) in 0.25s
[WARN]: :-) origin crate has no README
[INFO]: License key is set in Cargo.toml but no LICENSE file(s) were found; Please add the LICENSE file(s) to your project directory
[INFO]: Installing wasm-bindgen...
[INFO]: Optimizing wasm binaries with `wasm-opt`...
[INFO]: :-) Done in 0.83s
[INFO]: :-) Your wasm pkg is ready to publish at H:\Source\web\Opto\frontend\wasm-lib\pkg.
Installing NPM packages...
Generating API...
Finalizing build...
Frontend built!
Copying frontend build to backend...
Frontend build copied!
7 Messages Not Public
Sign In & Join Server To View
rust
Message Not Public
Sign In & Join Server To View
its its own build script
nope
Message Not Public
Sign In & Join Server To View
uhhhh
its all building fine now
2 Messages Not Public
Sign In & Join Server To View
Looking for more? Join the community!
C
C#
help
C
C#
help
Want results from more Discord servers?
Recommended PostsTranslate TextHello, I have a problem.
Is it possible to somehow translate some text from one language to another?✅ Need help with C# unity game development.The issue I have is that im getting reference null on this line:
itemParentObjectTransform.transformCompressing JSON data for SQL server, best way?Hi, What's a good way to approach compressing big JSON data and storing it in SQL server? (libraries❔ please hwlp whats the python equilevant >:(:C :C :C :C :C
```csharp
var rand = new Random();
string str = "0";
const st❔ Code stops after a bitI'm trying to make 3d game in unity and i made dice check zone when i roll the dice it shows what i ❔ IComponentConnector.Connect is explictly implemented more than once errorHi I have this error and idk how to solve it!
ive attached the code for that method
btw im having li✅ How to edit and save specific appsettings.json (project root) section?Hello, I have issue with editing specific section in the appsettings.json in project root folder, buThe score is not updating when objects are destroyed by a powerupthanks in advance!✅ WPF - Detect if screen resolution is resized (ex. 125% or more)I'm writing a tool in which I need to first set the screen resolution, I currently have a 1920 x 108❔ Passing Variable from pageHello, i'm working with WPF and i use MVVM pattern.
How can i share a variable from a page to differ❔ I have a ghost rectangle I can't get rid of in my Towers of Hanoi Windows FormsSo I used ChatGPT for a lot of the ground work and edited like I needed, and added a snap feature so❔ Regex to find string between _ or next uppercase letterCan you help me with regex?
```
Roads_RoadNode
Roads_Road_261Node
Roads_Curb_91Node
Roads_CurbNode
R❔ no auth error in a temp cleaner i dont know how to fixi even implemented a catch expression but its still not working✅ How do i make this create button work?(Razor Pages,entityframework)Ok, so i am making an inventory managment site, i connected an sql database to it and i can add stuf✅ WPF Store Singleton Action PropertyChanged optimizationHi!
I have a singleton in my app responsible for weather management
currently each of my properties Using pointers as generic a generic typeI'm trying to make an ArrayList of Bool Pointers, but ArrayList doesn't support Pointers (CS0306), a❔ C# Beginnerhow do i proceed to actually make it?
is there a way to store a number in variable to us it later in❔ WinForms beginner IssueHey yall, i dont find any fitting tutorial so im here. Im trying myself out with winforms and i wann❔ c# helpI have an application that I made in C#. I don't want the designs in the resources folder in the pro✅ What's the point of abstracting services as interfaces?Legitimate question. What's the point of making services into interfaces which you then inject into