Skip to content

Commit 6ea0283

Browse files
Set IsPackable to false in Azure Functions projects (#406)
Updated `Menes.PetStore.Hosting.AzureFunctions.InProcess.csproj` and `Menes.PetStore.Hosting.AzureFunctions.Isolated.csproj` to include the property `<IsPackable>false</IsPackable>`. This change indicates that the projects are not intended to be packed into NuGet packages, affecting their build and deployment.
1 parent 538c6a5 commit 6ea0283

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

Solutions/Menes.PetStore.Hosting.AzureFunctions.InProcess/Menes.PetStore.Hosting.AzureFunctions.InProcess.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
44
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
5+
<IsPackable>false</IsPackable>
56
</PropertyGroup>
67
<ItemGroup>
78
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />

Solutions/Menes.PetStore.Hosting.AzureFunctions.Isolated/Menes.PetStore.Hosting.AzureFunctions.Isolated.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8+
<IsPackable>false</IsPackable>
89
</PropertyGroup>
910
<ItemGroup>
1011
<FrameworkReference Include="Microsoft.AspNetCore.App" />

0 commit comments

Comments
 (0)