mirror of https://github.com/Cysharp/UniTask
19 lines
500 B
XML
19 lines
500 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<RootNamespace>NetCoreSandbox</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|