2022-05-26 02:27:53 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-08-26 03:18:45 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<RootNamespace>RegexBot.Modules</RootNamespace>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<Authors>NoiTheCat</Authors>
|
|
|
|
|
<Description>A set of standard modules for use with RegexBot.</Description>
|
2022-05-26 02:27:53 +00:00
|
|
|
|
<BaseOutputPath>$(SolutionDir)\output</BaseOutputPath>
|
|
|
|
|
<UseCommonOutputDirectory>true</UseCommonOutputDirectory>
|
|
|
|
|
<DebugType>embedded</DebugType>
|
2021-08-26 03:18:45 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\RegexBot\RegexBot.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|