66 lines
2.4 KiB
XML
66 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<StartupObject />
|
|
<RootNamespace>Pilz.S3DFileParser</RootNamespace>
|
|
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
<DocumentationFile>Pilz.Simple3DFileParser.xml</DocumentationFile>
|
|
<DefineTrace>true</DefineTrace>
|
|
<PackageProjectUrl>https://gitlab.com/Pilzinsel64/pilz-framework</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DefineDebug>true</DefineDebug>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DefineDebug>false</DefineDebug>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionExplicit>On</OptionExplicit>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionCompare>Binary</OptionCompare>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionStrict>Off</OptionStrict>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionInfer>On</OptionInfer>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
<Version>2.0.0</Version>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
<PackageReference Include="System.Drawing.Common" Version="8.0.4" />
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspose.3D" Version="18.10.0" />
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="AssimpNet">
|
|
<HintPath>..\Shared Libs\AssimpNet.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="ColladaSchema">
|
|
<HintPath>..\Shared Libs\ColladaSchema.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Import Include="Microsoft.VisualBasic" />
|
|
<Import Include="System" />
|
|
<Import Include="System.Collections" />
|
|
<Import Include="System.Collections.Generic" />
|
|
<Import Include="System.Data" />
|
|
<Import Include="System.Drawing" />
|
|
<Import Include="System.Diagnostics" />
|
|
<Import Include="System.Linq" />
|
|
<Import Include="System.Xml.Linq" />
|
|
<Import Include="System.Threading.Tasks" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Pilz.LicenseHelper\Pilz.LicenseHelper.csproj" />
|
|
</ItemGroup>
|
|
</Project> |