-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change LicenseUrl to LicenseFile (#276)
- Loading branch information
Showing
1 changed file
with
71 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,76 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<PackageId>Bitwarden.Sdk</PackageId> | ||
<Title>Bitwarden Secrets Manager SDK</Title> | ||
<Authors>Bitwarden Inc.</Authors> | ||
<Description>.NET bindings for interacting with the Bitwarden Secrets Manager</Description> | ||
<Copyright>Bitwarden Inc.</Copyright> | ||
<RepositoryUrl>https://github.com/bitwarden/sdk/tree/master/languages/csharp</RepositoryUrl> | ||
<PackageTags>Bitwarden;Sdk;.NET</PackageTags> | ||
<Product>SDK</Product> | ||
<PackageIcon>bitwarden.png</PackageIcon> | ||
<RepositoryType>Git</RepositoryType> | ||
<RootNamespace>Bitwarden.Sdk</RootNamespace> | ||
<PackageProjectUrl>https://bitwarden.com/products/secrets-manager/</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/bitwarden/sdk/blob/master/LICENSE</PackageLicenseUrl> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<RootNamespace>Bitwarden.Sdk</RootNamespace> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Text.Json" Version="7.0.3" /> | ||
<None Include="bitwarden.png" Pack="true" PackagePath="\" /> | ||
<None Include="../README.md" Pack="true" PackagePath="\" /> | ||
<None Include="../LICENSE.txt" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<Title>Bitwarden Secrets Manager SDK</Title> | ||
<Authors>Bitwarden Inc.</Authors> | ||
<Description>.NET bindings for interacting with the Bitwarden Secrets Manager</Description> | ||
<Copyright>Bitwarden Inc.</Copyright> | ||
<Product>SDK</Product> | ||
|
||
<PropertyGroup> | ||
<!--Debugonly--> | ||
</PropertyGroup> | ||
<RepositoryUrl>https://github.com/bitwarden/sdk/tree/master/languages/csharp</RepositoryUrl> | ||
<RepositoryType>Git</RepositoryType> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug||AnyCPU' "> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(Configuration)'=='Debug'"> | ||
<Content Include="../../../target/debug/libbitwarden_c*.dylib"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
</Content> | ||
<Content Include="../../../target/debug/libbitwarden_c*.so"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
</Content> | ||
<Content Include="../../../target/debug/bitwarden_c*.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(Configuration)'=='Release'"> | ||
<Content Include="macos-x64/libbitwarden_c*.dylib"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/osx-x64/native</PackagePath> | ||
</Content> | ||
<Content Include="macos-arm64/libbitwarden_c*.dylib"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/osx-arm64/native</PackagePath> | ||
</Content> | ||
<Content Include="ubuntu-x64/libbitwarden_c*.so"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/linux-x64/native</PackagePath> | ||
</Content> | ||
<Content Include="windows-x64/bitwarden_c*.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/win-x64/native</PackagePath> | ||
</Content> | ||
</ItemGroup> | ||
</Project> | ||
<PackageProjectUrl>https://bitwarden.com/products/secrets-manager/</PackageProjectUrl> | ||
<PackageId>Bitwarden.Sdk</PackageId> | ||
<PackageIcon>bitwarden.png</PackageIcon> | ||
<PackageTags>Bitwarden;Sdk;.NET</PackageTags> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Text.Json" Version="7.0.3" /> | ||
<None Include="bitwarden.png" Pack="true" PackagePath="\" /> | ||
<None Include="../README.md" Pack="true" PackagePath="\" /> | ||
<None Include="../LICENSE.txt" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<!--Debugonly--> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug||AnyCPU' "> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(Configuration)'=='Debug'"> | ||
<Content Include="../../../target/debug/libbitwarden_c*.dylib"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
</Content> | ||
<Content Include="../../../target/debug/libbitwarden_c*.so"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
</Content> | ||
<Content Include="../../../target/debug/bitwarden_c*.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(Configuration)'=='Release'"> | ||
<Content Include="macos-x64/libbitwarden_c*.dylib"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/osx-x64/native</PackagePath> | ||
</Content> | ||
<Content Include="macos-arm64/libbitwarden_c*.dylib"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/osx-arm64/native</PackagePath> | ||
</Content> | ||
<Content Include="ubuntu-x64/libbitwarden_c*.so"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/linux-x64/native</PackagePath> | ||
</Content> | ||
<Content Include="windows-x64/bitwarden_c*.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<PackageCopyToOutput>true</PackageCopyToOutput> | ||
<PackagePath>runtimes/win-x64/native</PackagePath> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |