TIL how to compile a project against a local .NET ...
# dotnet
e
TIL how to compile a project against a local .NET Pulumi SDK. Replace
<PackageReference Include="Pulumi" Version="3.9.1" />
with
<ProjectReference Include="..\..\..\..\pulumi\sdk\dotnet\Pulumi\Pulumi.csproj" />
everywhere and add
<AssemblyVersion>3.9.0.0</AssemblyVersion>
in
Pulumi.csproj
. Not as seamless as
replace
command I got used to in
go.mod
but it helped me a lot making iterative changes. Is that how folks do it or is there an easier way?
t
That’s how I do it
1
b
That’s how I do it
👍 1