添加项目文件。

This commit is contained in:
GG Z
2026-02-28 21:04:12 +08:00
parent e30d1be28b
commit f5893778a3
64 changed files with 3313 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
<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>