Skip to content

Instantly share code, notes, and snippets.

@Summpot
Summpot / error.log
Last active February 15, 2026 13:15
log
/usr/local/share/dotnet/packs/Microsoft.iOS.Sdk.net10.0_26.2/26.2.10197/tools/bin/mlaunch --launchsim /Users/summpot/Documents/GitHub/Pixeval/src/Pixeval.iOS/bin/Debug/net10.0-ios/iossimulator-arm64/Pixeval.iOS.app --device=:v2:udid=2BD13594-5FFF-4A34-A5F1-4901C2F7827E -sdk 26.2 --sdkroot /Applications/Xcode.app/Contents/Developer
xcrun simctl launch --console --terminate-running-process 2BD13594-5FFF-4A34-A5F1-4901C2F7827E companyName.Pixeval
companyName.Pixeval: 7715
2026-02-15 21:13:20.558414+0800 Pixeval.iOS[7715:66986] Microsoft.iOS: Socket error while connecting to IDE on 127.0.0.1:10000: Connection refused
2026-02-15 21:13:21.988773+0800 Pixeval.iOS[7715:66961] [UIKit App Config] `UIScene` lifecycle will soon be required. Failure to adopt will result in an assert in the future.
2026-02-15 21:13:22.896087+0800 Pixeval.iOS[7715:66961] *** Terminating app due to uncaught exception 'System.PlatformNotSupportedException', reason: 'Dynamic code generation is not supported on this platform. (System.PlatformNo
@Summpot
Summpot / MySourceGenerator.csproj
Created November 13, 2023 06:13
Make SourceGenerator work properly with external dependencies.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsRoslynComponent>true</IsRoslynComponent>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
</PropertyGroup>