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