Skip to content

Commit

Permalink
Publish profiles and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
biosmanager committed Aug 9, 2020
1 parent 44d2687 commit 5eb0186
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 8 deletions.
12 changes: 10 additions & 2 deletions DisplaySettings.Cli/DisplaySettings.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
<Authors>biosmanager</Authors>
<Product />
<Description>Change or retrieve display information and settings.</Description>
<Version>0.5.0</Version>
<Version>1.0.0</Version>
<RepositoryUrl>https://github.com/biosmanager/DisplaySettingsChanger</RepositoryUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<Copyright>© 2020 biosmanager</Copyright>
<Copyright>Copyright © 2020 biosmanager</Copyright>
<PackageProjectUrl>https://github.com/biosmanager/DisplaySettingsChanger</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<Company />
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -29,4 +30,11 @@
<ProjectReference Include="..\DisplaySettings\DisplaySettings.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>$(BaseOutputPath)\Publish\Windows-x64</PublishDir>
<PublishDir>bin\Release\netcoreapp3.1\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>False</SelfContained>
<SelfContained>false</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
<PublishReadyToRun>False</PublishReadyToRun>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
</PropertyGroup>
</Project>
17 changes: 17 additions & 0 deletions DisplaySettings/DisplaySettings.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>biosmanager</Authors>
<Version>1.0.0</Version>
<Description>Library to change or retrieve display information and settings.</Description>
<Copyright>Copyright © 2020 biosmanager</Copyright>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/biosmanager/DisplaySettings</PackageProjectUrl>
<RepositoryUrl>https://github.com/biosmanager/DisplaySettings</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\netstandard2.0\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The library targets **.NET Standard 2.0** and is therefore compatible with **.NE

## CLI

You can use the command line interface tool to change or retrieve display information/settings.
You can use the command line interface tool to change or retrieve display information/settings. This requires that you have the **.NET Core 3.1 x64 runtime** installed.

### Examples

Expand Down

0 comments on commit 5eb0186

Please sign in to comment.