Files
Leetcode/3. Longest Substring Without Repeating Characters/3. Longest Substring Without Repeating Characters.csproj
2026-03-22 01:41:46 +03:00

12 lines
325 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>_3._Longest_Substring_Without_Repeating_Characters</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>