27 lines
1,018 B
XML
27 lines
1,018 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NozCli.Core\NozCli.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyName>Noz.PowerShell</AssemblyName>
|
|
<RootNamespace>Noz.PowerShell</RootNamespace>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
<Version>0.1.0</Version>
|
|
<Authors>Bruno Deanoz</Authors>
|
|
<Copyright>Copyright (c) 2026 Bruno Deanoz</Copyright>
|
|
<Description>PowerShell module for noz — manage notes directly from the PowerShell prompt.</Description>
|
|
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
|
|
<RepositoryUrl>https://git.kryptomrx.de/noz/noz-cli</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|