20 lines
536 B
XML
20 lines
536 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Folder Include="BindingModels\" />
|
||
|
<Folder Include="BusinessLogics\" />
|
||
|
<Folder Include="Enums\" />
|
||
|
<Folder Include="Interfaces\" />
|
||
|
<Folder Include="ViewModels\" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||
|
<Exec Command="copy /Y "$(TargetDir)*.dll" "$(SolutionDir)ImplementationExtensions\*.dll"" />
|
||
|
</Target>
|
||
|
|
||
|
</Project>
|