Skip to content

Commit

Permalink
Merge pull request #2 from atc-net/hotfix/nuget
Browse files Browse the repository at this point in the history
Ensure proper nuget setup in projects
  • Loading branch information
perkops authored May 3, 2024
2 parents c23242a + 45c7e24 commit a50a6e2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/Atc.Azure.DigitalTwin.CLI/Atc.Azure.DigitalTwin.CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<PackageId>atc-azure-digitaltwin</PackageId>
<PackageTags>azure-digitaltwin</PackageTags>
<Description>A .NET Tool that can interact with Azure Digital Twin instances, validate models, upload models etc.</Description>
<Title>ATC AZURE DIGITALTWIN CLI</Title>
<OutputType>Exe</OutputType>
<AssemblyName>atc-azure-digitaltwin</AssemblyName>
<PackAsTool>true</PackAsTool>
<DebugType>pdbonly</DebugType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Atc" Version="2.0.472" />
<PackageReference Include="Atc.Console.Spectre" Version="2.0.472" />
Expand Down
8 changes: 8 additions & 0 deletions src/Atc.Azure.DigitalTwin/Atc.Azure.DigitalTwin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>Atc.Azure.DigitalTwin</PackageId>
<PackageTags>azure;iot;digitaltwin;twin</PackageTags>
<Description>Atc.Azure.DigitalTwin Contains common services for azure digital twins, validate DTDL models, upload DTDL models etc.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Atc" Version="2.0.472" />
<PackageReference Include="Azure.Identity" Version="1.11.2" />
Expand Down

0 comments on commit a50a6e2

Please sign in to comment.