2e178a2f2d
Clear separation between what features will be available in the public instance and additional features available for a self-hosted instance.
20 lines
756 B
XML
20 lines
756 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<Authors>Noikoio</Authors>
|
|
<Product>Kerobot</Product>
|
|
<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>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="copy /Y "$(TargetDir)$(ProjectName).*" "$(SolutionDir)Kerobot\bin\$(ConfigurationName)\netcoreapp2.0\"" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Kerobot\Kerobot.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|