C
C#•3y ago
OptoCloud

āœ… [.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
130 Replies
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
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>
mtreit
mtreit•3y ago
Should be able to just add an explicit PackageReference to the newer version in your project. To resolve the conflict.
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
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.
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
could that be the issue?
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
doesnt help if i downgrade all the packages to 7.0.1
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
how to do this?
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
eh? just make it 7.0.2? that hasnt released yet for that package
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
mtreit
mtreit•3y ago
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.2" />
OptoCloud
OptoCloudOP•3y ago
ok that fixed it for local lets see if it fixes it for github actions
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
<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>
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
in the first place, no but now i did yeah
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
MODiX
MODiX•3y ago
OptoCloud#0001
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
From OptoCloud#0001
React with āŒ to remove this embed.
OptoCloud
OptoCloudOP•3y ago
tbh it happened in github workflows first
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
then i somehow replicated it on my local computer but idk how
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
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"
}
}
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
uhhH?
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
right uhm šŸ¤”
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
yup
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
yeah forgot to remove that from the template i copied
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
i can build it locally rn but github cant
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
oh nvm now i have a weirder error
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
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
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
i dont know github copilot spit it out
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
new vs thingy
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
i cant remember messing with any xml encryption or any encyption at all
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
i specifically want identity long gone
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
>/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]
Microsoft
.NET SDKs downloads for Visual Studio
Download .NET SDKs for Visual Studio. Visit our main Downloads page for all .NET downloads, including Linux and macOS.
OptoCloud
OptoCloudOP•3y ago
oh
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
github doesnt support 7.0.2?
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
that should work fine ive think ive compiled this on ubuntu before
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
oof sure thats it tho?
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
can i make it only target windows?
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
dotnet oops wrong window
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
ok progress
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
i can replicate on Ubuntu 22 WSL
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
builds without esproj Sadge window
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE package: '@jest/[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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/[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
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: '[email protected]',
npm WARN EBADENGINE required: { node: '>=14' },
npm WARN EBADENGINE current: { node: 'v12.22.9', npm: '8.5.1' }
npm WARN EBADENGINE }
stare
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
hmm
OptoCloud
OptoCloudOP•3y ago
OptoCloud
OptoCloudOP•3y ago
ouch i dont know enough about frontend
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
that seems bad
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
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
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
OH
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
atpRtsd
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
im at 19.4 now im in console
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
its wsl
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
18.13 now
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
yeahhhh nightmares
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
mhm
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
yeah it all builds btw, for some reason i needed to install java as well ToothlessRev have no idea
reacher
reacher•3y ago
Heh I have my frontend files mixed in with the backend stuff, grouped by features
OptoCloud
OptoCloudOP•3y ago
oh god
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
reacher
reacher•3y ago
OptoCloud
OptoCloudOP•3y ago
šŸ˜†
reacher
reacher•3y ago
Features/Users/FrontEnd Even more ban!
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
reacher
reacher•3y ago
I'm committed to my feature folders!
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
I have no system quite new to asp.net
OptoCloud
OptoCloudOP•3y ago
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
i havent had any education in architecture
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
Incognito Mode
YouTube
architecture.
Go to https://NordVPN.com/incognito or use code INCOGNITO to get 70% off a 3 year plan plus 1 additional month free. (give chance so I can continue making terrible ads) --------------- U LOOKIN CUTE U SINGL? ------------- Twitter: twitter.com/nethistorian Patreon: patreon.com/internethistorian Twitch: twitch.tv/internethistorian Sumito: ht...
OptoCloud
OptoCloudOP•3y ago
<:AA_Think:584639261194715156> I'll figure it out
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
yeah i have research to do
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
šŸ‘‹
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
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
OptoCloud
OptoCloudOP•3y ago
else than this everythings fine
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
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!
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
rust
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
its its own build script nope
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
OptoCloud
OptoCloudOP•3y ago
uhhhh its all building fine now
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View

Did you find this page helpful?