Skip to content

Instantly share code, notes, and snippets.

@hyrmn
Created October 18, 2019 01:16
Show Gist options
  • Select an option

  • Save hyrmn/6e51d130a2cceb407832c99c8aaeb259 to your computer and use it in GitHub Desktop.

Select an option

Save hyrmn/6e51d130a2cceb407832c99c8aaeb259 to your computer and use it in GitHub Desktop.
refuses to pick up new files unless I clean or delete bin/obj first
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net461</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DbUp-SqlServer" Version="4.2.0" />
<PackageReference Include="OctoPack" Version="3.0.31" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="**\*.sql" />
<None Remove="\**\*.sql" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Include="@(EmbeddedResource)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\RezStream.Common\RezStream.Infrastructure\src\RezStream.Infrastructure\RezStream.Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Configuration" />
</ItemGroup>
<ItemGroup>
<None Update="PostDeploy.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment