18 lines
528 B
XML
Raw Permalink Normal View History

2021-08-04 09:30:34 +09:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ObservableCollections.R3\ObservableCollections.R3.csproj" />
<ProjectReference Include="..\..\src\ObservableCollections\ObservableCollections.csproj" />
2024-02-16 18:12:19 +09:00
<PackageReference Include="R3" Version="1.0.0" />
</ItemGroup>
2021-08-04 09:30:34 +09:00
</Project>