-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSFI.Application.csproj
63 lines (57 loc) · 2.61 KB
/
SFI.Application.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>IS4.SFI.Application</AssemblyName>
<VersionPrefix>1.2.2</VersionPrefix>
<Product>Semantic File Inspector</Product>
<Authors>IS4</Authors>
<Copyright>Copyright (c) $(Authors) $([System.DateTime]::UtcNow.ToString('yyyy'))</Copyright>
<RootNamespace>IS4.SFI.Application</RootNamespace>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<NoWarn>1701;1702;1998</NoWarn>
<DocumentationFile>bin\$(AssemblyName).xml</DocumentationFile>
<AssemblyTitle>$(Product) Application</AssemblyTitle>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>$(AssemblyName)</PackageId>
<Title>$(AssemblyTitle)</Title>
<Description>Contains the main $(Product) application to embed in solutions.</Description>
<RepositoryUrl>https://github.com/IS4Code/SFI</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>$(RepositoryUrl)/tree/HEAD/SFI.Application</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>linked-data;sparql;rdf;semantic-search;metadata-extraction;application</PackageTags>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/CHANGELOG.txt"))</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="..\icon.png" Visible="false">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\LICENSE" Visible="false">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="7.0.0" />
<PackageReference Include="NuGet.PackageManagement" Version="6.6.1" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
<PackageReference Include="Ude.NetStandard" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SFI.RDF\SFI.RDF.csproj" />
<ProjectReference Include="..\SFI\SFI.csproj" />
</ItemGroup>
<Import Project="..\SFI.Shared\SFI.Shared.projitems" Label="Shared" />
</Project>