40 lines
1.6 KiB
XML
40 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,1591</NoWarn>
|
|
<DocumentationFile>Pilz.Configuration.xml</DocumentationFile>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);$(ProjectDir)**\*.vb</DefaultItemExcludes>
|
|
<LangVersion>latest</LangVersion>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<PackageProjectUrl>https://gitlab.com/Pilzinsel64/pilz-framework</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DefineConstants>DEBUG</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
|
|
<PropertyGroup>
|
|
<Version>3.1.1</Version>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</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.Diagnostics" />
|
|
<Import Include="System.Linq" />
|
|
<Import Include="System.Xml.Linq" />
|
|
<Import Include="System.Threading.Tasks" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Pilz\Pilz.vbproj" />
|
|
</ItemGroup>
|
|
</Project> |