22 lines
629 B
XML
22 lines
629 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="cs_packages\" />
|
|
<Folder Include="Gui\vehiclemenu\web\css\" />
|
|
<Folder Include="Gui\vehiclemenu\web\font\" />
|
|
<Folder Include="Gui\vehiclemenu\web\img\" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(ConfigurationName)' != 'ServerBuild'">
|
|
<Exec Command="powershell.exe .\Scripts\moveItems.ps1" />
|
|
</Target>
|
|
|
|
</Project>
|