Richard Brown
Richard Brown
Not sure if this is related to #687 or not, but I do believe the tests should wait for the render to complete. My ideal scenario would be to not...
> ... you might want to write a test ... My thinking is that that should be the exception, not the rule. (i.e., what you have now). Not allowing the...
The following reproduces it for me: ``` mkdir Project1 cd Project1 dotnet new xunit cd .. mkdir Project2 cd Project2 dotnet new xunit cd .. dotnet new sln dotnet sln...
You can also see the workaround here: https://github.com/dotnet/cli/blob/master/src/dotnet/commands/dotnet-test/Program.cs#L35 My understanding is that a lot of the build performance improvement comes from paralellization of the build, but that certain (console, I...
I tried the [Developer Bastion Host Example](https://www.pulumi.com/registry/packages/azure-native/api-docs/network/bastionhost/#create-developer-bastion-host) It gave the error: ``` error: Status=400 Code="NetworkAclsOnlySupportedInDeveloperSku" Message="The networkAcls property is only available in Developer Sku." ``` Of note, the following bicep...
[out.txt](https://github.com/user-attachments/files/21831266/out.txt)
From the Azure cli: ``` az extension add -n bastion az network bastion create --name test-pulumi-bastionhost --sku Developer --resource-group test-pulumi-bastionhost-rg --vnet-name test-pulumi-bastionhost-vnet ``` A summary of the output of the...
The following (rather obscure) code seems to work: new Pulumi.AzureNative.Network.BastionHost("test-pulumi-bastionhost", new Pulumi.AzureNative.Network.BastionHostArgs { BastionHostName = "test-pulumi-bastionhost", Sku = new Pulumi.AzureNative.Network.Inputs.SkuArgs { Name = Pulumi.AzureNative.Network.BastionHostSkuName.Developer, }, VirtualNetwork = new Pulumi.AzureNative.Network.Inputs.SubResourceArgs {...
I hadn't realised that #1503 had fixed it for `dotnet test` ... looking at the implementation here: https://github.com/dotnet/sdk/blob/v9.0.100-preview.6.24328.19/src/Cli/dotnet/commands/dotnet-test/Program.cs#L72 it looks like the following works: `dotnet msbuild /t:VSTest /p:VsTestUseMSBuildOutput=true`