-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSharedNetCoreLibrary.csproj
More file actions
31 lines (26 loc) · 1.07 KB
/
SharedNetCoreLibrary.csproj
File metadata and controls
31 lines (26 loc) · 1.07 KB
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
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\common.props" />
<PropertyGroup>
<PackageTags>Utilites, Core, Library, Helper, C#, dotnet</PackageTags>
<RootNamespace>AndreasReitberger.Shared.Core</RootNamespace>
<Title>NET-Core Shared Library</Title>
<Description>A core libray used for our .NET libraries.</Description>
<TargetFrameworks>netstandard2.1;net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\licenses\CommunityToolkit.Mvvm.txt" Link="Licenses\CommunityToolkit.Mvvm.txt" />
<None Include="..\..\licenses\Newtonsoft.Json.txt" Link="Licenses\Newtonsoft.Json.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
<PackageReference Include="System.Text.Json" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="Licenses\" />
</ItemGroup>
</Project>