compile ok .ㅠㅠ

This commit is contained in:
chi
2025-05-26 10:21:17 +09:00
parent 57dc6de740
commit 77a6aefb44
27 changed files with 780 additions and 204 deletions

View File

@@ -1,4 +1,4 @@
namespace AGVMapControl
namespace AGVControl
{
partial class MapControl
{

View File

@@ -1,11 +1,15 @@
using System.Collections.Immutable;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Design;
using System.Drawing.Drawing2D;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using AGVMapControl.Models;
using AGVControl.Models;
namespace AGVMapControl
namespace AGVControl
{
public partial class MapControl : Control
{

View File

@@ -2,7 +2,7 @@ using System.Drawing;
using System.Collections.Generic;
using System.Linq;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class AGV
{

View File

@@ -2,7 +2,7 @@ using System.Drawing;
using System;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class CustomLine
{

View File

@@ -2,7 +2,7 @@ using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class MagnetLine
{

View File

@@ -1,7 +1,7 @@
using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class MapData
{

View File

@@ -2,7 +2,7 @@ using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public enum BranchDirection
{

View File

@@ -1,7 +1,7 @@
using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class MapText
{

View File

@@ -2,7 +2,7 @@ using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class RFIDLine
{

View File

@@ -1,7 +1,7 @@
using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class RFIDPoint
{

View File

@@ -2,7 +2,7 @@ using System.Drawing;
using System.Collections.Generic;
using System.Linq;
namespace AGVMapControl.Models
namespace AGVControl.Models
{
public class ToolBarItem
{

View File

@@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AGVControl</RootNamespace>
<AssemblyName>AGVControl</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
@@ -57,6 +57,21 @@
<Compile Include="GuideSensor.Designer.cs">
<DependentUpon>GuideSensor.cs</DependentUpon>
</Compile>
<Compile Include="MapControl.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="MapControl.Designer.cs">
<DependentUpon>MapControl.cs</DependentUpon>
</Compile>
<Compile Include="Models\AGV.cs" />
<Compile Include="Models\CustomLine.cs" />
<Compile Include="Models\MagnetLine.cs" />
<Compile Include="Models\MapData.cs" />
<Compile Include="Models\MapElements.cs" />
<Compile Include="Models\MapText.cs" />
<Compile Include="Models\RFIDLine.cs" />
<Compile Include="Models\RFIDPoint.cs" />
<Compile Include="Models\ToolBarItem.cs" />
<Compile Include="MyRadioButton.cs">
<SubType>Component</SubType>
</Compile>
@@ -77,5 +92,16 @@
<DependentUpon>ValueSelect.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="MapControl.resx">
<DependentUpon>MapControl.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CommUtil\arCommUtil.csproj">
<Project>{14e8c9a5-013e-49ba-b435-ffffff7dd623}</Project>
<Name>arCommUtil</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -1,16 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Reference Include="arCommUtil">
<HintPath>..\..\DLL\arCommUtil.dll</HintPath>
</Reference>
</ItemGroup>
</Project>