Tandy
Tandy
CC#
Created by Tandy on 2/6/2024 in #help
Convert EPS file to SVG?
Thanks Andrew! Unfortunately, it seems like all solutions (inkscape, ImageMagick) require GhostScript, which has a AGPL / commercial license.
5 replies
CC#
Created by Tandy on 4/19/2023 in #help
❔ Playwright dotnet - Duplicate 'Content' items were included.
Sorry didn't see this message! I'm using VS Code and Omnisharp. My csproj file is pretty basic (though I've omitted ~10 packages which caused message to exceed max discord message length:
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>11</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Playwright" Version="1.32.0" />
</ItemGroup>

<ItemGroup>
<None Remove="Migrations\Sql\*.sql" />
<EmbeddedResource Include="Migrations\Sql\*.sql" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Reporting.Domain\Reporting.Domain.csproj" />
</ItemGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591</NoWarn>
</PropertyGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>11</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Playwright" Version="1.32.0" />
</ItemGroup>

<ItemGroup>
<None Remove="Migrations\Sql\*.sql" />
<EmbeddedResource Include="Migrations\Sql\*.sql" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Reporting.Domain\Reporting.Domain.csproj" />
</ItemGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591</NoWarn>
</PropertyGroup>
</Project>
4 replies
CC#
Created by Tandy on 11/12/2022 in #help
❔ How to pause BlockingCollection consumption?
Thank you @calledude I had seen a few references to ManualResetEvent in my searches but didn't quite understand it. I did end up implementing it, haven't tested yet, but very happy to come back and see you recommended the same!
3 replies