사용않하는 using Mono; 제거 - 빌드 시 에러 발생

This commit is contained in:
logonkhi
2025-09-01 11:48:53 +09:00
parent eb99ef4ed5
commit 0d4e7659bf
5 changed files with 17 additions and 2 deletions

View File

@@ -1,5 +1,4 @@
#nullable enable
using Mono.Cecil;
using SampleProject;
using System;
using System.Collections.Generic;
@@ -94,7 +93,7 @@ namespace UVC.Factory.Component
if (item != null)
{
string? portId = item.GetString("PORT_ID");
if(portId == null) continue;
if (portId == null) continue;
if (ports.ContainsKey(portId))
{
Port port = ports[portId];