C
C#

help

✅ [.NET 7.02] Nuget Dependency version conflict

OOptoCloud1/23/2023
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
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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>
Mmtreit1/23/2023
Should be able to just add an explicit PackageReference to the newer version in your project. To resolve the conflict.
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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.
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
could that be the issue?
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
doesnt help if i downgrade all the packages to 7.0.1
UUUnknown User1/23/2023
6 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
how to do this?
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
eh? just make it 7.0.2? that hasnt released yet for that package
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
Mmtreit1/23/2023
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
OOptoCloud1/23/2023
ok that fixed it for local lets see if it fixes it for github actions
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
<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>
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
in the first place, no but now i did yeah
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
tbh it happened in github workflows first
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
then i somehow replicated it on my local computer but idk how
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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
Oh Keep in mind I also have this: global.json
{
"sdk": {
"version": "7.0.102",
"rollForward": "latestFeature"
}
}
{
"sdk": {
"version": "7.0.102",
"rollForward": "latestFeature"
}
}
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
uhhH?
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
right uhm 🤔
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
yup
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
yeah forgot to remove that from the template i copied
UUUnknown User1/23/2023
6 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
i can build it locally rn but github cant
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
oh nvm now i have a weirder error
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
i dont know github copilot spit it out
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
new vs thingy
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
i cant remember messing with any xml encryption or any encyption at all
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
i specifically want identity long gone
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
>/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
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
github doesnt support 7.0.2?
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
that should work fine ive think ive compiled this on ubuntu before
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
oof sure thats it tho?
UUUnknown User1/23/2023
7 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
can i make it only target windows?
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
dotnet oops wrong window
UUUnknown User1/23/2023
6 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
ok progress
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
i can replicate on Ubuntu 22 WSL
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
builds without esproj Sadge window
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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 }
stare
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
hmm
OOptoCloud1/23/2023
OOptoCloud1/23/2023
ouch i dont know enough about frontend
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
that seems bad
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
OH
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
atpRtsd
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
im at 19.4 now im in console
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
its wsl
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
18.13 now
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
yeahhhh nightmares
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
mhm
UUUnknown User1/23/2023
7 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
yeah it all builds btw, for some reason i needed to install java as well ToothlessRev have no idea
Oog_reacher1/23/2023
Heh I have my frontend files mixed in with the backend stuff, grouped by features
OOptoCloud1/23/2023
oh god
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
Oog_reacher1/23/2023
OOptoCloud1/23/2023
😆
Oog_reacher1/23/2023
Features/Users/FrontEnd Even more ban!
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
Oog_reacher1/23/2023
I'm committed to my feature folders!
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
I have no system quite new to asp.net
OOptoCloud1/23/2023
UUUnknown User1/23/2023
2 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
i havent had any education in architecture
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
https://www.youtube.com/watch?v=CwF8DYf5dDc <:AA_Think:584639261194715156> I'll figure it out
UUUnknown User1/23/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
yeah i have research to do
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
👋
UUUnknown User1/23/2023
5 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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
OOptoCloud1/23/2023
else than this everythings fine
UUUnknown User1/23/2023
3 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/23/2023
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!
UUUnknown User1/24/2023
7 Messages Not Public
Sign In & Join Server To View
OOptoCloud1/24/2023
rust
UUUnknown User1/24/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/24/2023
its its own build script nope
UUUnknown User1/24/2023
Message Not Public
Sign In & Join Server To View
OOptoCloud1/24/2023
uhhhh its all building fine now
UUUnknown User1/24/2023
2 Messages Not Public
Sign In & Join Server To View

Looking for more? Join the community!

Want results from more Discord servers?
Add your server
Recommended Posts
Translate 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