2024-05-02 03:02:26 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-05-01 02:55:43 -04:00
|
|
|
|
<PropertyGroup>
|
2024-05-06 06:46:27 -04:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-05-01 02:55:43 -04:00
|
|
|
|
<OutputType>Library</OutputType>
|
2024-05-02 03:02:26 -04:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2024-05-01 02:55:43 -04:00
|
|
|
|
<UseVSHostingProcess>true</UseVSHostingProcess>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ServerRelease|AnyCPU'">
|
|
|
|
|
<OutputPath>bin\ServerRelease\</OutputPath>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2024-05-02 09:17:45 -04:00
|
|
|
|
<Reference
|
|
|
|
|
Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
|
2024-05-01 07:06:55 +00:00
|
|
|
|
<HintPath>..\packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll</HintPath>
|
|
|
|
|
<Private>True</Private>
|
2024-05-01 02:55:43 -04:00
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2024-05-02 03:02:26 -04:00
|
|
|
|
<ProjectReference Include="..\tso.common\FSO.Common.csproj" />
|
2024-05-01 02:55:43 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2024-05-02 03:02:26 -04:00
|
|
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
|
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.8.0" />
|
|
|
|
|
<PackageReference Include="Portable.JWT" Version="1.0.5" />
|
|
|
|
|
<PackageReference Include="Portable.Ninject" Version="3.3.1" />
|
|
|
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
2024-05-01 02:55:43 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|