Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SWI-1696: Finishing touches before beta release #81

Merged
merged 3 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .openapi-generator-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@
#!docs/README.md

.gitignore

src/Bandwidth.Standard.Test/Bandwidth.Standard.Test.csproj
src/Bandwidth.Standard/Bandwidth.Standard.csproj
2 changes: 0 additions & 2 deletions src/Bandwidth.Standard.Test/Bandwidth.Standard.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>Bandwidth.Standard.Test</AssemblyName>
<RootNamespace>Bandwidth.Standard.Test</RootNamespace>
<TargetFramework Condition="'$(DOTNET_VERSION)' == '6.0.x' Or '$(DOTNET_VERSION)' == ''">net6.0</TargetFramework>
<TargetFramework Condition="'$(DOTNET_VERSION)' == '7.0.x'">net7.0</TargetFramework>
<IsPackable>false</IsPackable>
Expand Down
25 changes: 9 additions & 16 deletions src/Bandwidth.Standard/Bandwidth.Standard.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo><!-- setting GenerateAssemblyInfo to false causes this bug https://github.com/dotnet/project-system/issues/3934 -->
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Bandwidth.Standard</AssemblyName>
<PackageId>Bandwidth.Standard</PackageId>
<OutputType>Library</OutputType>
<Authors>OpenAPI</Authors>
<Company>OpenAPI</Company>
<AssemblyTitle>OpenAPI Library</AssemblyTitle>
<Description>A library generated from a OpenAPI doc</Description>
<Copyright>No Copyright</Copyright>
<RootNamespace>Bandwidth.Standard</RootNamespace>
<Version>1.0.0</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Bandwidth.Standard.xml</DocumentationFile>
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Minor update</PackageReleaseNotes>
<PackageTags>Bandwidth</PackageTags>
<AssemblyName>Bandwidth.Sdk</AssemblyName>
<Version>1.0.0.0</Version>
<Authors></Authors>
<Owners></Owners>
juliajanu marked this conversation as resolved.
Show resolved Hide resolved
<Product>Bandwidth.Standard</Product>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Description>.NET client library for the bandwidth API</Description>
<LangVersion>7.3</LangVersion>
juliajanu marked this conversation as resolved.
Show resolved Hide resolved
</PropertyGroup>

<ItemGroup>
Expand Down
Loading