-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathClient.csproj
54 lines (48 loc) · 2.09 KB
/
Client.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0</TargetFrameworks>
<AssemblyName>SSClient</AssemblyName>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<RootNamespace>NeoSmart.SecureStore.Client</RootNamespace>
<PackageId>SecureStore.Client</PackageId>
<Authors>Mahmoud Al-Qudsi, NeoSmart Technologies</Authors>
<Product>NeoSmart.SecureStore.Client</Product>
<Description>The CLI companion utility to NeoSmart SecureStore, for creating and managing secrets stores at the command line.</Description>
<Copyright>Copyright NeoSmart Technologies 2018-2023</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>http://neosmart.net/blog/2020/securestore-open-secrets-format/</PackageProjectUrl>
<PackageIcon>SecureStore.png</PackageIcon>
<PackageIconUrl />
<RepositoryUrl>https://github.com/neosmart/securestore</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>security, secrets, cryptography, encryption</PackageTags>
<PackageReleaseNotes>Official release</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<StartupObject></StartupObject>
<Version>1.2.1</Version>
<DebugSymbols>true</DebugSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackAsTool>true</PackAsTool>
<ToolCommandName>SecureStore</ToolCommandName>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
<PackageReference Include="System.Security.SecureString" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SecureStore\SecureStore.csproj" />
</ItemGroup>
<ItemGroup>
<None Include=".\README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<None Include="..\SecureStore.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>