2024-06-14 09:37:33 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
|
<LangVersion>12</LangVersion>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
|
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
|
<DebugType>portable</DebugType>
|
2024-07-25 02:15:44 +00:00
|
|
|
|
<Platforms>x64</Platforms>
|
2024-06-14 09:37:33 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-07-17 10:58:08 +00:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="8.0.4" />
|
2024-06-14 09:37:33 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|