Skip to content

Commit

Permalink
🔨 Add reference dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
furkandeveloper committed Apr 21, 2022
1 parent ba68c98 commit cfe2886
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions sample/EasyWeb.Demo/EasyWeb.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<WarningsAsErrors>NU1605</WarningsAsErrors>
<NoWarn>1701;1702;1591;SA1503</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EasyWeb.AspNetCore.Filters" Version="1.0.0" />
<PackageReference Include="EasyWeb.AspNetCore.Standarts" Version="1.0.0" />
<PackageReference Include="EasyWeb.AspNetCore.Swagger" Version="1.0.0" />
<ProjectReference Include="..\..\src\EasyWeb.AspNetCore.ApiStandarts\EasyWeb.AspNetCore.ApiStandarts.csproj" />
<ProjectReference Include="..\..\src\EasyWeb.AspNetCore.Filters\EasyWeb.AspNetCore.Filters.csproj" />
<ProjectReference Include="..\..\src\EasyWeb.AspNetCore.Swagger\EasyWeb.AspNetCore.Swagger.csproj" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/EasyWeb.AspNetCore.Swagger/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ public class Configuration
/// <summary>
/// Document Title
/// </summary>
public static string Title => null;
public string Title { get; set; }

/// <summary>
/// Document Description
/// </summary>
public static string Description => null;
public string Description { get; set; }
}

0 comments on commit cfe2886

Please sign in to comment.