RegexBot/Modules-SelfHosted/Modules-SelfHosted.csproj

21 lines
756 B
XML
Raw Normal View History

2018-04-27 21:17:55 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<Authors>Noikoio</Authors>
<Product>Kerobot</Product>
2018-04-27 21:17:55 +00:00
<Version>0.0.1</Version>
<Description>Kerobot modules with more specific purposes that may not work well in a public instance, but are manageable in self-hosted bot instances.</Description>
<RootNamespace>Kerobot.Modules</RootNamespace>
2018-04-27 21:17:55 +00:00
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)$(ProjectName).*&quot; &quot;$(SolutionDir)Kerobot\bin\$(ConfigurationName)\netcoreapp2.0\&quot;" />
</Target>
2018-04-27 21:17:55 +00:00
<ItemGroup>
<ProjectReference Include="..\Kerobot\Kerobot.csproj" />
</ItemGroup>
</Project>