Skip to content

Commit

Permalink
fix warnings and doc
Browse files Browse the repository at this point in the history
  • Loading branch information
karimz1 committed Jan 12, 2025
1 parent e01e9b2 commit 13b9ae7
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 56 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ I welcome contributions! To get started:

## Licensing

This project is licensed under the MIT License. For more details, see the [https://github.com/karimz1/AWS-Service-Authentication-Tool/blob/main/LICENSE](./LICENSE) file.
This project is licensed under the MIT License. For more details, see the [LICENSE](https://github.com/karimz1/AWS-Service-Authentication-Tool/blob/main/LICENCE) file.

120 changes: 65 additions & 55 deletions src/AwsServiceAuthenticator.Cli/AwsServiceAuthenticator.Cli.csproj
Original file line number Diff line number Diff line change
@@ -1,59 +1,69 @@
<Project Sdk="Microsoft.NET.Sdk">

<!-- General project settings -->
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<!-- Tool-specific settings -->
<PropertyGroup>
<PackAsTool>true</PackAsTool>
<PackageId>awsat</PackageId>
<ToolCommandName>awsat</ToolCommandName>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<!-- Physical path to the file in your repo -->
<None Include="..\..\README.md" Pack="true" PackagePath="" />
</ItemGroup>

<!-- Packaging settings -->
<PropertyGroup>
<Version>1.1.1</Version>
<PackageOutputPath>..\..\nupkg</PackageOutputPath>
</PropertyGroup>

<!-- Build settings -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\build\Debug</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\..\build\Release</OutputPath>
</PropertyGroup>
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<!-- end Build Settings -->

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.Trace" Version="4.0.0" />
<PackageReference Include="SerilogTraceListener" Version="3.2.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AwsServiceAuthenticator.Commands\AwsServiceAuthenticator.Commands.csproj" />
<ProjectReference Include="..\AwsServiceAuthenticator.Infrastructure\AwsServiceAuthenticator.Infrastructure.csproj" />
</ItemGroup>
<!-- General project settings -->
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<!-- Ensure deterministic builds -->
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
</PropertyGroup>

<!-- Tool-specific settings -->
<PropertyGroup>
<PackAsTool>true</PackAsTool>
<PackageId>awsat</PackageId>
<ToolCommandName>awsat</ToolCommandName>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<!-- Physical path to the file in your repo -->
<None Include="..\..\README.md" Pack="true" PackagePath="" />
</ItemGroup>

<!-- Packaging settings -->
<PropertyGroup>
<Version>1.1.2</Version>

<!-- Set your own authors/company/etc. -->
<Authors>Karim Zouine</Authors>
<Company>KarimZ1</Company>
<Product>awsat</Product>
<PackageOutputPath>..\..\nupkg</PackageOutputPath>
</PropertyGroup>

<!-- Build settings -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\build\Debug</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\..\build\Release</OutputPath>
</PropertyGroup>

<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<!-- end Build Settings -->

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.Trace" Version="4.0.0" />
<PackageReference Include="SerilogTraceListener" Version="3.2.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AwsServiceAuthenticator.Commands\AwsServiceAuthenticator.Commands.csproj" />
<ProjectReference Include="..\AwsServiceAuthenticator.Infrastructure\AwsServiceAuthenticator.Infrastructure.csproj" />
</ItemGroup>

</Project>

0 comments on commit 13b9ae7

Please sign in to comment.