Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make DSHarp SDKs Id and references lower case #202

Merged
merged 1 commit into from
Nov 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/DSharp.Sdk/DSharp.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

<PackageId>DSharp.Sdk</PackageId>
<PackageId>dsharp.sdk</PackageId>
<Title>DSharp Sdk</Title>
<Description>Defines the MSBuild Compliant DSharp project sdk</Description>
<PackageType>MSBuildSdk</PackageType>
Expand Down
2 changes: 1 addition & 1 deletion src/DSharp.Sdk/DSharp.Sdk.nuspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>DSharp.Sdk</id>
<id>dsharp.sdk</id>
<title>DSharp Sdk</title>
<authors>$authors$</authors>
<version>$version$</version>
Expand Down
4 changes: 2 additions & 2 deletions src/DSharp.Sdk/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To create a new DSharp project is now as simple as updating the Sdk attribute in

```xml

<Project Sdk="DSharp.Sdk" Version="1.2.3">
<Project Sdk="dsharp.sdk" Version="1.2.3">
<PropertyGroup>
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
</PropertyGroup>
Expand All @@ -36,7 +36,7 @@ Sdk versions can be specified globally using a global.json file. If you are usin

{
"msbuild-sdks": {
"DSharp.Sdk": "1.2.3",
"dsharp.sdk": "1.2.3",
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/DSharp.Web.Sdk/DSharp.Web.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

<PackageId>DSharp.Web.Sdk</PackageId>
<PackageId>dsharp.web.sdk</PackageId>
<Title>DSharp Web Sdk</Title>
<Description>Defines the MSBuild Compliant DSharp project sdk, with additional browser api imports</Description>
<PackageType>MSBuildSdk</PackageType>
Expand Down
2 changes: 1 addition & 1 deletion src/DSharp.Web.Sdk/DSharp.Web.Sdk.nuspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>DSharp.Web.Sdk</id>
<id>dsharp.web.sdk</id>
<title>DSharp Web Sdk</title>
<authors>$authors$</authors>
<version>$version$</version>
Expand Down
2 changes: 1 addition & 1 deletion src/DSharp.Web.Sdk/Sdk/Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<ImportedSdks>DSharp.Web.Sdk.props;$(ImportedSdks)</ImportedSdks>
</PropertyGroup>

<Import Project="Sdk.props" Sdk="DSharp.Sdk" Condition="$(ImportedSdks.Contains('DSharp.Sdk.props')) == false"/>
<Import Project="Sdk.props" Sdk="dsharp.sdk" Condition="$(ImportedSdks.Contains('DSharp.Sdk.props')) == false"/>
<Import Condition="$(IsDSharpBuild)" Project="$(MSBuildThisFileDirectory)DSharp.props"/>
</Project>
2 changes: 1 addition & 1 deletion src/DSharp.Web.Sdk/Sdk/Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
<ImportedSdks>DSharp.Web.Sdk.targets;$(ImportedSdks)</ImportedSdks>
</PropertyGroup>

<Import Project="Sdk.targets" Sdk="DSharp.Sdk" Condition="$(ImportedSdks.Contains('DSharp.Sdk.targets')) == false"/>
<Import Project="Sdk.targets" Sdk="dsharp.sdk" Condition="$(ImportedSdks.Contains('DSharp.Sdk.targets')) == false"/>
</Project>
2 changes: 1 addition & 1 deletion src/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"msbuild-sdks": {
"DSharp.Sdk": "1.0.0"
"dsharp.sdk": "1.0.0"
}
}