2019-02-18 19:30:38 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2019-05-04 09:17:18 -05:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2019-07-08 20:21:08 -05:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2019-02-18 19:30:38 -06:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-05-04 09:17:18 -05:00
|
|
|
|
<PackageReference Include="Microsoft.SyndicationFeed.ReaderWriter" Version="1.0.2" />
|
2019-02-18 19:30:38 -06:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-06-09 09:50:58 -05:00
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</ProjectReference>
|
2019-02-18 19:30:38 -06:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2019-05-04 09:17:18 -05:00
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
|
|
|
<Exec Command="copy "$(TargetDir)Microsoft.SyndicationFeed.ReaderWriter.dll" "$(SolutionDir)BUILD\Plugins"" />
|
2019-02-18 19:30:38 -06:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|