Created
October 18, 2019 01:16
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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