mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-15 19:40:09 +00:00
28 lines
886 B
XML
28 lines
886 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RootNamespace>NetCoreSandbox</RootNamespace>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
|
|
<PackageReference Include="PooledAwait" Version="1.0.49" />
|
|
<PackageReference Include="System.Interactive.Async" Version="4.1.1" />
|
|
<PackageReference Include="System.Reactive" Version="4.4.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\UniTask.NetCore\UniTask.NetCore.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\UniTask.Analyzer\UniTask.Analyzer.csproj">
|
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
<OutputItemType>Analyzer</OutputItemType>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|