67 lines
2.8 KiB
XML
67 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RootNamespace>Project</RootNamespace>
|
|
<AssemblyName>Amkor</AssemblyName>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<ApplicationIcon>icons8-split-64.ico</ApplicationIcon>
|
|
<Platforms>x64</Platforms>
|
|
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
|
|
<NoStdLib>False</NoStdLib>
|
|
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
|
|
<NoWarn>IDE1006</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>..\..\..\..\..\Amkor\AGV4\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>..\..\..\ManualMapEditor\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<OutputPath>..\..\..\..\Amkor\OTP2DReading\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<OutputPath>bin\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
|
|
<PackageReference Include="System.Runtime.Remoting" Version="4.0.2" />
|
|
<PackageReference Include="System.Security.Cryptography" Version="8.0.0" />
|
|
<PackageReference Include="System.Web" Version="4.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StateMachine\StateMachine.csproj" />
|
|
<ProjectReference Include="..\SubProject\AGV\NARUMI.csproj" />
|
|
<ProjectReference Include="..\SubProject\AGVControl\agvControl.csproj" />
|
|
<ProjectReference Include="..\SubProject\arCtl\arControl.csproj" />
|
|
<ProjectReference Include="..\SubProject\arFrameControl\arFrameControl.csproj" />
|
|
<ProjectReference Include="..\SubProject\BMS\BMS.csproj" />
|
|
<ProjectReference Include="..\SubProject\CommData\CommData.csproj" />
|
|
<ProjectReference Include="..\SubProject\CommUtil\arCommUtil.csproj" />
|
|
<ProjectReference Include="..\SubProject\MSSQLCommand\MSSQLCommand.csproj" />
|
|
<ProjectReference Include="..\SubProject\Patch\SWPatch.csproj" />
|
|
<ProjectReference Include="..\SubProject\ProPLC\PLC.Net45.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="icons8-split-64.ico">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |