Files
regex-tools/engines/dotnet/RegexTools.DotNet.csproj

20 lines
813 B
XML

<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputType>Library</OutputType>
<InvariantGlobalization>true</InvariantGlobalization>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>RegexTools.DotNet</AssemblyName>
<RootNamespace>RegexToolsDotNet</RootNamespace>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Deterministic>true</Deterministic>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>full</TrimMode>
</PropertyGroup>
</Project>