Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
<PackageReference Include="Microsoft.AspNetCore.Http" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../Worker.Extensions.Sql/src/Microsoft.Azure.Functions.Worker.Extensions.Sql.csproj" />
<ProjectReference
Include="..\..\Worker.Extensions.Sql\src\Microsoft.Azure.Functions.Worker.Extensions.Sql.csproj" />
<!-- We want to build the extension project first since this project references the package
produced by building that. But we don't want it as an actual runtime depdendency -->
<ProjectReference Include="..\..\src\Microsoft.Azure.WebJobs.Extensions.Sql.csproj"
ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Azure.WebJobs.Extensions.Sql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
<ItemGroup>
<_Packages Include=".\bin\$(Configuration)\*.nupkg" />
</ItemGroup>
<Copy SourceFiles="@(_Packages)" DestinationFolder="../local-packages" />
<Copy SourceFiles="@(_Packages)" DestinationFolder="..\local-packages" />
<Message Text="Copied sql .nupkg to local-packages" Importance="high" />
</Target>
<Target Name="RemoveNugetPackageCache" BeforeTargets="Build">
<RemoveDir Directories="$(NugetPackageRoot)/$(PackageId.ToLower())/99.99.99"></RemoveDir>
<Message Text="Deleted nuget cache for $(PackageId.ToLower())/99.99.99" Importance="high" />
<RemoveDir Directories="$(NugetPackageRoot)\$(PackageId.ToLower())\99.99.99"></RemoveDir>
<Message Text="Deleted nuget cache for $(PackageId.ToLower())\99.99.99" Importance="high" />
</Target>
</Project>
9 changes: 7 additions & 2 deletions test-outofproc/test-outofproc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Worker.Extensions.Sql\src\Microsoft.Azure.Functions.Worker.Extensions.Sql.csproj" />
<ProjectReference
Include="..\Worker.Extensions.Sql\src\Microsoft.Azure.Functions.Worker.Extensions.Sql.csproj" />
<!-- We want to build the extension project first since this project references the package
produced by building that. But we don't want it as an actual runtime depdendency -->
<ProjectReference Include="..\src\Microsoft.Azure.WebJobs.Extensions.Sql.csproj"
ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand All @@ -27,6 +32,6 @@
</None>
</ItemGroup>
<ItemGroup>
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext"/>
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
</ItemGroup>
</Project>