|
|
|
@ -7,8 +7,8 @@
|
|
|
|
|
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
|
|
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
|
|
|
<Title>$(AssemblyName)</Title>
|
|
|
|
|
<Authors>Tom PIT ltd</Authors>
|
|
|
|
|
<Copyright>2022 Tom PIT ltd</Copyright>
|
|
|
|
|
<Authors>Tom PIT</Authors>
|
|
|
|
|
<Copyright>2022 Tom PIT</Copyright>
|
|
|
|
|
<PackageProjectUrl>https://git.tompit.com/Connected/Info</PackageProjectUrl>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
|
|
|
<PackageTags>connected;platform;</PackageTags>
|
|
|
|
@ -18,29 +18,6 @@
|
|
|
|
|
<PackageOutputPath>$(OutputPath)</PackageOutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Connected.Caching" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Collections" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Data" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Entities" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Globalization" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Hosting" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Interop" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Notifications" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Rest" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Security" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Services" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Configuration" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Net" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Runtime" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Threading" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Connected.Validation" Version="1.0.*-*" />
|
|
|
|
|
<PackageReference Include="Nerdbank.GitVersioning"
|
|
|
|
|
Version="3.5.119"
|
|
|
|
|
PrivateAssets="all"
|
|
|
|
|
Condition="!Exists('packages.config')" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="SR.Designer.cs">
|
|
|
|
|
<DependentUpon>SR.resx</DependentUpon>
|
|
|
|
@ -67,12 +44,22 @@
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="CopyPackages" AfterTargets="Pack">
|
|
|
|
|
<Copy SourceFiles="$(OutputPath)..\$(PackageId).$(PackageVersion).nupkg" DestinationFolder="$([System.Environment]::GetEnvironmentVariable('LOCAL_NUGET'))" />
|
|
|
|
|
<Copy SourceFiles="$(OutputPath)..\$(PackageId).$(PackageVersion).snupkg" DestinationFolder="$([System.Environment]::GetEnvironmentVariable('LOCAL_NUGET'))" />
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="UploadLocalPackages" AfterTargets="CopyPackages" >
|
|
|
|
|
<Exec Command="dotnet nuget push -s LocalNugetServer $(OutputPath)..\$(PackageId).$(PackageVersion).nupkg --api-key $([System.Environment]::GetEnvironmentVariable('LOCAL_NUGET_SERVER_TOKEN'))" IgnoreExitCode="true"></Exec>
|
|
|
|
|
<Exec Command="dotnet nuget push -s LocalNugetServer $(OutputPath)..\$(PackageId).$(PackageVersion).snupkg --api-key $([System.Environment]::GetEnvironmentVariable('LOCAL_NUGET_SERVER_TOKEN'))" IgnoreExitCode="true"></Exec>
|
|
|
|
|
</Target>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Connected.Caching\Connected.Caching.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Collections\Connected.Collections.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Configuration\Connected.Configuration.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Data\Connected.Data.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Entities\Connected.Entities.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Globalization\Connected.Globalization.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Hosting\Connected.Hosting.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Interop\Connected.Interop.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Net\Connected.Net.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Notifications\Connected.Notifications.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Rest\Connected.Rest.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Runtime\Connected.Runtime.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Security\Connected.Security.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Services\Connected.Services.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Threading\Connected.Threading.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Connected.Validation\Connected.Validation.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|
|
|
|
|