mtreit
mtreit
CC#
Created by Tacti Tacoz on 11/13/2024 in #help
Ignore strong names
assemblies that consume strong-name-signed assemblies do not also have to be strong-name-signed.
3 replies
CC#
Created by ~Nost~ on 11/13/2024 in #help
✅ New to C# and need help! Guess the number game.
$code
17 replies
CC#
Created by DDmax500 on 11/13/2024 in #help
✅ New to C#
Personally I think solving advent of code problems is a fun way to practice - the problems are interesting and enjoyable.
7 replies
CC#
Created by DDmax500 on 11/13/2024 in #help
✅ New to C#
$projects
7 replies
CC#
Created by DDmax500 on 11/13/2024 in #help
✅ New to C#
7 replies
CC#
Created by Quostix on 11/4/2024 in #help
Local version looks different to online
Sure thing
6 replies
CC#
Created by Quostix on 11/4/2024 in #help
Local version looks different to online
If you need to you can add fonts to your website, something like this:
<style>
@font-face {
font-family: 'Cascadia Mono';
src: url('/assets/fonts/CascadiaMono.ttf') format('truetype');
}

@font-face {
font-family: 'Cascadia Code';
src: url('/assets/fonts/Cascadia.ttf') format('truetype');
}

@font-face {
font-family: 'FiraCode-Regular';
src: url('/assets/fonts/FiraCode-Regular.ttf') format('truetype');
}
</style>
<style>
@font-face {
font-family: 'Cascadia Mono';
src: url('/assets/fonts/CascadiaMono.ttf') format('truetype');
}

@font-face {
font-family: 'Cascadia Code';
src: url('/assets/fonts/Cascadia.ttf') format('truetype');
}

@font-face {
font-family: 'FiraCode-Regular';
src: url('/assets/fonts/FiraCode-Regular.ttf') format('truetype');
}
</style>
6 replies
CC#
Created by Quostix on 11/4/2024 in #help
Local version looks different to online
Is it a non-standard font that perhaps isn't necessarily available?
6 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
Yeah, that's the one.
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
I have an entire book on MSBuild. With enough effort you can make it do anything, it's extremely customizable.
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
I've done this before, but can't remember what repo that's in
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
But if you just want to get it working, sure use Exec.
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
I think there is a MSBuild task
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
That's a bit blunt force but it should work 🙂
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
You can put a custom target in project B that runs the build of project A
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
Two projects that don't have an actual dependency on each other but somehow need to build in an exact order is strange.
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
Feels like you are doing some very non-standard stuff if you have this kind of issue. Maybe step back and re-evaluate your entire approach.
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
Right, that's what I meant by dependency.
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
If you make a dependency between the two projects they should build in dependency order.
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
The build system has no dependency on solution files (you don't need a sln file in order to build) so that's definitely a dead end.
40 replies