Net Core - Exclude bin/obj folders from project files

This commit is contained in:
amaitland
2020-08-26 16:15:39 +10:00
committed by Alex Maitland
parent 2987ed1230
commit 4ce32a4778
3 changed files with 29 additions and 0 deletions

View File

@@ -18,6 +18,15 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Platforms>x86;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<Compile Remove="obj\**" />
<EmbeddedResource Remove="bin\**" />
<EmbeddedResource Remove="obj\**" />
<None Remove="bin\**" />
<None Remove="obj\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CefSharp.OffScreen" Version="84.4.10" />