-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDime.Rules.csproj
More file actions
22 lines (21 loc) · 894 Bytes
/
Dime.Rules.csproj
File metadata and controls
22 lines (21 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<Authors>Dime Software</Authors>
<Company>Dime Software</Company>
<Product>Validation Rules</Product>
<Description>A simple validation rule engine</Description>
<PackageProjectUrl>https://github.com/dimesoftware/maps</PackageProjectUrl>
<PackageIconUrl>https://cdn.dime-software.com/dime-software/logo-shape.png</PackageIconUrl>
<Version>1.2.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<NeutralLanguage>en</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/dimesoftware/rules</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>