RegexBot/Kerobot-Modules/Kerobot-Modules.csproj
2018-04-27 14:17:55 -07:00

27 lines
863 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<Product>Kerobot</Product>
<Company />
<Authors>Noikoio</Authors>
<AssemblyVersion>0.0.1</AssemblyVersion>
<Description>User-facing portions of Kerobot</Description>
<FileVersion>0.0.1</FileVersion>
<Version>0.0.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net" Version="2.0.0-beta" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Kerobot\Kerobot.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)$(ProjectName).*&quot; &quot;$(SolutionDir)Kerobot\bin\$(ConfigurationName)\netcoreapp2.0\&quot;" />
</Target>
</Project>