kasperk81

Results 152 comments of kasperk81

update process is: 1. runtime, aspnetcore, and x other repositories push their changes to sdk 2. sdk makes a build and pushes to installer 3. installer publishes the daily build...

works for me ``` docker run --rm --platform linux/arm64 fedora sh -c \ "uname -m; dnf install -y dotnet-sdk-8.0; dotnet new webapi -o /webapi; cd $_; dotnet run -c Release"...

on ubuntu 22.04 with dotnet 7: ```sh # terminal 1 dotnet tool install --global dotnet-monitor dotnet monitor collect -u http://localhost:52324 --no-auth --diagnostic-port /tmp/myport.sock # terminal 2 dotnet publish -c Release...

it's used by linguist to highlight syntax on github https://github.com/github/linguist/blob/master/.gitmodules#L34 how we should change that to highlight all supported keywords alike? (FROM, AS, RUN, COPY ...)

@bethanyj28, @konradpabjan, can we get a decision on this please? we really need separate lines for multiple files. this will not affect any existing user as it is brilliantly implemented...

I was trying to convert an aarch64 assembly file to riscv64: https://github.com/libunwind/libunwind/blob/ffd0c05e8fabef6e2f41569c8d5680eaf5168749/src/aarch64/getcontext.S#L42 asm2riscv is a unique tool, when we need some quick reference to what the transpired form would look...

> If `Assembly.Location` and `RuntimeFeature.IsDynamicCodeSupported` return the same values for both MonoAot and NativeAot, we can add an additional check for `IsNewMono` (like we did with `IsWasm`). Assembly.Location is true...

I don't think it is currently possible on TravisCI. I have used it on GitHub Actions with [workflow dispatch](https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/). here is a quick example: https://github.com/kasperk81/actionstesting/actions/workflows/myoptionalflow.yml with regular merge to master,...

@bryan-aguilar can this be merged?