Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <Project Sdk="Microsoft.NET.Sdk.Web">
-
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <IsPackable>false</IsPackable>
- <DisableImplicitAspNetCoreAnalyzers>true</DisableImplicitAspNetCoreAnalyzers>
- <EnableNETAnalyzers>false</EnableNETAnalyzers>
- <EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
- </PropertyGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\Source\MQTTnet.AspnetCore\MQTTnet.AspNetCore.csproj"/>
-
- <PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="4.0.1" />
- <PackageReference Include="Microsoft.Net.Compilers" Version="4.0.1" />
- </ItemGroup>
-
- <ItemGroup>
- <Folder Include="wwwroot\"/>
- </ItemGroup>
-
- </Project>
|