-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStateVariable.csproj
More file actions
39 lines (33 loc) · 1.51 KB
/
StateVariable.csproj
File metadata and controls
39 lines (33 loc) · 1.51 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
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1701;1702;1591;1573</NoWarn>
<!-- NuGet Packaging -->
<PackageTags>state variable</PackageTags>
<Description>A library for managing state variables</Description>
<Authors>tanitaka-tech</Authors>
<RepositoryUrl>https://github.com/tanitaka-tech/StateVariable</RepositoryUrl>
<PackageId>StateVariable</PackageId>
<Version>1.4.3</Version>
<IsPackable>true</IsPackable>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="R3" Version="1.3.0" />
<PackageReference Include="ObservableCollections" Version="3.3.4" />
<PackageReference Include="ObservableCollections.R3" Version="2.2.2" />
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE.txt" Pack="true" PackagePath=""/>
<!-- Exclude Tests Folder -->
<Content Remove="Tests\**" />
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" />
</ItemGroup>
</Project>