forked from jscarle/OnePassword.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOnePassword.NET.csproj
More file actions
91 lines (87 loc) · 4.1 KB
/
OnePassword.NET.csproj
File metadata and controls
91 lines (87 loc) · 4.1 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>OnePassword</RootNamespace>
<AssemblyName>OnePassword.NET</AssemblyName>
<PackageId>OnePassword.NET</PackageId>
<Authors>Jean-Sebastien Carle</Authors>
<Company>Jean-Sebastien Carle</Company>
<Product>OnePassword.NET</Product>
<Description>1Password CLI Wrapper</Description>
<Version>2.4.2</Version>
<AssemblyVersion>2.4.2.0</AssemblyVersion>
<FileVersion>2.4.2.0</FileVersion>
<Copyright>Copyright © Jean-Sebastien Carle 2021-2024</Copyright>
<RepositoryUrl>https://github.com/jscarle/OnePassword.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>1Password OnePassword</PackageTags>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/jscarle/OnePassword.NET</PackageProjectUrl>
<Title>OnePassword.NET - 1Password CLI Wrapper</Title>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AnalysisLevel>latest-All</AnalysisLevel>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
<WarningsAsErrors>true</WarningsAsErrors>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
<Optimize>true</Optimize>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Collections.Immutable" Version="9.0.4" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.Text.Json.Serialization" />
<Using Include="System.Runtime.Serialization" />
<PackageReference Include="System.Text.Json" Version="6.0.11" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<Visible>False</Visible>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<Visible>False</Visible>
</None>
<None Include="..\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<Visible>False</Visible>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="IOnePasswordManagerOptions.cs">
<DependentUpon>OnePasswordManagerOptions.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.Documents.cs">
<DependentUpon>OnePasswordManager.Documents.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.Groups.cs">
<DependentUpon>OnePasswordManager.Groups.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.Vaults.cs">
<DependentUpon>OnePasswordManager.Vaults.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.Items.cs">
<DependentUpon>OnePasswordManager.Items.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.Templates.cs">
<DependentUpon>OnePasswordManager.Templates.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.Users.cs">
<DependentUpon>OnePasswordManager.Users.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.cs">
<DependentUpon>OnePasswordManager.cs</DependentUpon>
</Compile>
<Compile Update="IOnePasswordManager.Accounts.cs">
<DependentUpon>OnePasswordManager.Accounts.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>