Skip to content

Instantly share code, notes, and snippets.

@rogeralsing
Created March 11, 2019 14:01
Show Gist options
  • Save rogeralsing/8ff5d79e75ddf9587374b7badc92680e to your computer and use it in GitHub Desktop.
Save rogeralsing/8ff5d79e75ddf9587374b7badc92680e to your computer and use it in GitHub Desktop.
func.csproj
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.26" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment