-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
66 additions
and
56 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
120 changes: 65 additions & 55 deletions
120
src/AwsServiceAuthenticator.Cli/AwsServiceAuthenticator.Cli.csproj
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,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> |