script-splitter/script-splitter.csproj

19 lines
518 B
XML
Raw Permalink Normal View History

2024-07-11 00:27:08 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>script-splitter</RootNamespace>
2024-07-11 00:27:08 -04:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2024-07-11 00:27:08 -04:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2024-07-11 02:37:27 -04:00
</ItemGroup>
2024-07-11 00:27:08 -04:00
</Project>