2024-09-30 16:32:48 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-05-13 20:40:26 -07:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-07-25 09:15:55 -07:00
|
|
|
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
|
2024-05-13 20:40:26 -07:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<IsPackable>false</IsPackable>
|
2024-06-10 10:31:45 -07:00
|
|
|
<IsTestProject>True</IsTestProject>
|
2024-09-30 16:32:48 -07:00
|
|
|
<NoWarn>$(NoWarn);CA1829;CA1826</NoWarn>
|
2024-05-13 20:40:26 -07:00
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
|
|
<ProjectReference Include="..\AutoGen.Tests\AutoGen.Tests.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-08-08 10:49:58 -07:00
|
|
|
<ItemGroup>
|
2024-09-30 16:32:48 -07:00
|
|
|
<PackageReference Include="Microsoft.PowerShell.SDK" />
|
2024-08-08 10:49:58 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
2024-05-13 20:40:26 -07:00
|
|
|
</Project>
|