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

@ -19,6 +19,15 @@
<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" />
</ItemGroup>

View File

@ -19,6 +19,15 @@
<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.WinForms" Version="84.4.10" />
</ItemGroup>

View File

@ -21,6 +21,17 @@
<StartupObject>CefSharp.MinimalExample.Wpf.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<Compile Remove="obj\**" />
<EmbeddedResource Remove="bin\**" />
<EmbeddedResource Remove="obj\**" />
<None Remove="bin\**" />
<None Remove="obj\**" />
<Page Remove="bin\**" />
<Page Remove="obj\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Windows.Interactivity.WPF" Version="2.0.20525" />
<PackageReference Include="CefSharp.Wpf" Version="84.4.10" />