12 lines
447 B
XML
12 lines
447 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\dir.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
<Compile Include="..\Shared\**\*.cs" />
|
|
<ProjectReference Include="..\..\src\Microsoft.Extensions.SecretManager.Tools\Microsoft.Extensions.SecretManager.Tools.csproj" />
|
|
</ItemGroup>
|
|
</Project> |