2020-05-05 21:05:32 +09:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<RootNamespace>NetCoreSandbox</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-05-08 03:23:14 +09:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Interactive.Async" Version="4.1.1" />
|
2020-05-09 15:33:46 +09:00
|
|
|
<PackageReference Include="System.Reactive" Version="4.4.1" />
|
2020-05-08 03:23:14 +09:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-05-05 21:05:32 +09:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\UniTask.NetCore\UniTask.NetCore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|