-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncryptedConfigValue.Cli.csproj
More file actions
34 lines (29 loc) · 1.31 KB
/
Copy pathEncryptedConfigValue.Cli.csproj
File metadata and controls
34 lines (29 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<ToolCommandName>encrypted-config-value-dotnet</ToolCommandName>
<SolutionDir>$([System.IO.Path]::GetDirectoryName($(MSBuildProjectDirectory)))</SolutionDir>
<NuspecFile>.\EncryptedConfigValue.Cli.nuspec</NuspecFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)\Readme.md" Pack="true" PackagePath="Readme.md" />
<None Update="DotnetToolSettings.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" />
<ProjectReference Include="..\EncryptedConfigValue\EncryptedConfigValue.csproj">
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>