-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathShos.UndoRedoList.SampleApp.csproj
26 lines (26 loc) · 1.2 KB
/
Shos.UndoRedoList.SampleApp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Authors>Fujio Kojima</Authors>
<Company>Sho's Software</Company>
<Copyright>Copyright © 2020-2024 Fujio Kojima</Copyright>
<PackageProjectUrl>https://github.com/Fujiwo/Shos.UndoRedoList</PackageProjectUrl>
<RepositoryUrl>https://github.com/Fujiwo/Shos.UndoRedoList</RepositoryUrl>
<PackageTags>list ilist undo redo collection ovservablecollection</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>Sample WPF app for UndoRedoObservableCollection.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Prism.Core" Version="8.1.97" />
<PackageReference Include="Roslynator.Analyzers" Version="4.12.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shos.UndoRedoList\Shos.UndoRedoList.csproj" />
</ItemGroup>
</Project>