Skip to content

Instantly share code, notes, and snippets.

@jacobmohl
Last active April 16, 2020 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacobmohl/483f4383607b0cab20c1b77abf52d604 to your computer and use it in GitHub Desktop.
Save jacobmohl/483f4383607b0cab20c1b77abf52d604 to your computer and use it in GitHub Desktop.
Example of project-to-project references compiled as one DLL/NuGet package in .Net Core.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference PrivateAssets="all" Include="..\MySolution.Dependency\MySolution.Dependency.csproj" />
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment