16 lines
424 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>
<ProjectReference Include="..\..\src\ObservableCollections\ObservableCollections.csproj" />
</ItemGroup>
2021-08-04 09:30:34 +09:00
</Project>