18 lines
583 B
XML
Raw Normal View History

2021-08-04 09:30:34 +09:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
2021-09-22 20:19:11 +09:00
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
2022-07-26 00:07:23 +09:00
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
2024-02-15 17:13:16 +09:00
<ProjectReference Include="..\..\src\ObservableCollections.R3\ObservableCollections.R3.csproj" />
<ProjectReference Include="..\..\src\ObservableCollections\ObservableCollections.csproj" />
2024-02-15 17:13:16 +09:00
<PackageReference Include="R3" Version="0.1.23" />
</ItemGroup>
2021-08-04 09:30:34 +09:00
</Project>