-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContosoAlgorithms.csproj
More file actions
20 lines (18 loc) · 875 Bytes
/
Copy pathContosoAlgorithms.csproj
File metadata and controls
20 lines (18 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>Contoso.Algorithms</PackageId>
<Authors>Venkataraja Medarametla</Authors>
<Company>Microsoft Corporation</Company>
<Description>Hub of algorithms</Description>
<Title>Contoso Algorithms</Title>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>Contoso, Algorithms, Searching, Sorting, Structure, Data Structure</PackageTags>
<PackageProjectUrl>https://github.com/vemedara/Contoso.Algorithms.git</PackageProjectUrl>
<RepositoryUrl>https://github.com/vemedara/Contoso.Algorithms.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>