22 lines
743 B
XML
22 lines
743 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<RootNamespace>Recordingtest.EgPlugin</RootNamespace>
|
|
<EnableDefaultItems>true</EnableDefaultItems>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Editor03.PluginInterface">
|
|
<HintPath>..\..\EG-BIM Modeler\Editor03.PluginInterface.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="HmEG">
|
|
<HintPath>..\..\EG-BIM Modeler\HmEG.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|