2018-04-27 21:17:55 +00:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
<TargetFramework > netcoreapp2.0</TargetFramework>
<Authors > Noikoio</Authors>
2018-06-05 02:23:00 +00:00
<Product > Kerobot</Product>
2018-04-27 21:17:55 +00:00
<Version > 0.0.1</Version>
2018-06-05 02:23:00 +00:00
<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>
2018-06-05 02:23:00 +00:00
<Target Name= "PostBuild" AfterTargets= "PostBuildEvent" >
<Exec Command= "copy /Y "$(TargetDir)$(ProjectName).*" "$(SolutionDir)Kerobot\bin\$(ConfigurationName)\netcoreapp2.0\"" />
</Target>
2018-04-27 21:17:55 +00:00
<ItemGroup >
<ProjectReference Include= "..\Kerobot\Kerobot.csproj" />
</ItemGroup>
</Project>