Files
MSAddinTest/TestAddinPlugin/TestAddinPlugin.csproj
2026-02-28 21:04:12 +08:00

58 lines
2.4 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<OutputType>Library</OutputType>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<Platforms>AnyCPU;x64</Platforms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<OutputPath>C:\Program Files\Bentley\MicroStation 2024\MicroStation\Mdlapps</OutputPath>
<Microstation>C:\Program Files\Bentley\MicroStation 2024\MicroStation</Microstation>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>C:\Program Files\Bentley\MicroStation 2024\MicroStation\Mdlapps</OutputPath>
</PropertyGroup>
<!-- <PropertyGroup>
<StartupObject />
</PropertyGroup>-->
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>bin\x64\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="Bentley.DgnPlatformNET">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(Microstation)\Bentley.DgnPlatformNET.dll</HintPath>
</Reference>
<Reference Include="Bentley.GeometryNET">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(Microstation)\Bentley.GeometryNET.dll</HintPath>
</Reference>
<Reference Include="Bentley.GeometryNET.Structs">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(Microstation)\Bentley.GeometryNET.Structs.dll</HintPath>
</Reference>
<Reference Include="ustation">
<HintPath>$(Microstation)\ustation.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestAddin\Commands.xml">
<SubType>Designer</SubType>
<LogicalName>CommandTable.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MSAddinTest\MSAddinTest.csproj" />
<ProjectReference Include="..\MSUtils\MSUtils.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
</Project>