18 lines
476 B
XML
18 lines
476 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RootNamespace>RustTools.Core</RootNamespace>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<Platforms>x86;x64;arm64;AnyCPU</Platforms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
|
</ItemGroup>
|
|
</Project>
|