2022-02-25 13:33:23 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-12-19 08:59:24 -08:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2021-12-22 17:16:44 -08:00
|
|
|
<NoWarn>CA1812</NoWarn>
|
2021-12-19 08:59:24 -08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-14 20:40:52 +02:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" PrivateAssets="all" />
|
2023-01-25 02:14:10 -08:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all" />
|
2021-12-19 08:59:24 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-12-22 17:16:44 -08:00
|
|
|
<ItemGroup>
|
2022-11-17 14:56:30 -08:00
|
|
|
<PackageReference Include="Autofac" Version="6.5.0" GeneratePathProperty="true" PrivateAssets="all" />
|
2021-12-22 17:16:44 -08:00
|
|
|
<PackageReference Include="CaseExtensions" Version="1.1.0" GeneratePathProperty="true" PrivateAssets="all" />
|
2022-12-16 03:44:16 -08:00
|
|
|
<PackageReference Include="NSwag.Core" Version="13.18.2" GeneratePathProperty="true" PrivateAssets="all" />
|
2021-12-22 17:16:44 -08:00
|
|
|
<PackageReference Include="Nustache" Version="1.16.0.10" GeneratePathProperty="true" PrivateAssets="all" NoWarn="NU1701" />
|
2022-09-21 03:44:55 -07:00
|
|
|
<PackageReference Include="NJsonSchema" Version="10.8.0" GeneratePathProperty="true" PrivateAssets="all" />
|
2022-11-16 10:22:48 -08:00
|
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" GeneratePathProperty="true" PrivateAssets="all" />
|
2022-11-29 05:51:25 -08:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" GeneratePathProperty="true" PrivateAssets="all" />
|
2022-09-21 01:12:54 -07:00
|
|
|
<PackageReference Include="Namotion.Reflection" Version="2.1.1" GeneratePathProperty="true" PrivateAssets="all" />
|
2022-11-08 03:12:20 -08:00
|
|
|
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.0" GeneratePathProperty="true" PrivateAssets="all" />
|
2021-12-22 17:16:44 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<GetTargetPathDependsOn>$(GetTargetPathDependsOn);GetDependencyTargetPaths</GetTargetPathDependsOn>
|
2022-03-29 22:01:26 +02:00
|
|
|
</PropertyGroup>
|
2021-12-22 17:16:44 -08:00
|
|
|
|
|
|
|
|
<Target Name="GetDependencyTargetPaths">
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGAutofac)\lib\netstandard2.0\Autofac.dll" IncludeRuntimeDependency="false" />
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGCaseExtensions)\lib\netstandard2.0\CaseExtensions.dll" IncludeRuntimeDependency="false" />
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGNSwag_Core)\lib\netstandard2.0\NSwag.Core.dll" IncludeRuntimeDependency="false" />
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGNustache)\lib\net20\Nustache.Core.dll" IncludeRuntimeDependency="false" />
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGNJsonSchema)\lib\netstandard2.0\NJsonSchema.dll" IncludeRuntimeDependency="false" />
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGMicrosoft_Bcl_AsyncInterfaces)\lib\netstandard2.0\Microsoft.Bcl.AsyncInterfaces.dll" IncludeRuntimeDependency="false" />
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGNewtonsoft_Json)\lib\netstandard1.0\Newtonsoft.Json.dll" IncludeRuntimeDependency="false" />
|
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGNamotion_Reflection)\lib\netstandard2.0\Namotion.Reflection.dll" IncludeRuntimeDependency="false" />
|
2022-08-31 00:20:52 +02:00
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGSystem_Diagnostics_DiagnosticSource)\lib\netstandard2.0\System.Diagnostics.DiagnosticSource.dll" IncludeRuntimeDependency="false" />
|
2021-12-22 17:16:44 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Target>
|
2022-03-29 22:01:26 +02:00
|
|
|
|
2021-12-19 08:59:24 -08:00
|
|
|
</Project>
|