778e339a61
implement filterable meta for issue #158 update translations and use humanizer lib with datetime/timespan for issue #80
21 lines
821 B
XML
21 lines
821 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<LangVersion>7.1</LangVersion>
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SyndicationFeed.ReaderWriter" Version="1.0.2" />
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2.4.6" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
|
</Target>
|
|
|
|
</Project>
|