12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>net8.0</TargetFrameworks>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>disable</Nullable>
- <AssemblyName>EasyDevCoreV4.Common</AssemblyName>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <BaseOutputPath>..\bin</BaseOutputPath>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <DocumentationFile></DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <SupportedPlatform Include="browser" />
- </ItemGroup>
-
- <ItemGroup>
- <None Remove="Directory.Build.props" />
- </ItemGroup>
- </Project>
|