Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
kekyo committed Oct 11, 2023
2 parents 0dba499 + 650766a commit d2d0935
Show file tree
Hide file tree
Showing 62 changed files with 171 additions and 67 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ jobs:
# Build

- name: NuGet restore
run: dotnet restore -p:Configuration=Release CenterCLR.RelaxVersioner.sln
run: dotnet restore -p:Configuration=Release RelaxVersioner.sln

- name: Build
run: dotnet build -p:Configuration=Release -p:BuildIdentifier=${GITHUB_RUN_NUMBER} CenterCLR.RelaxVersioner.sln
run: dotnet build -p:Configuration=Release -p:BuildIdentifier=${GITHUB_RUN_NUMBER} RelaxVersioner.sln

- name: Build NuGet packages
run: dotnet pack -p:Configuration=Release -p:BuildIdentifier=${GITHUB_RUN_NUMBER} -o artifacts CenterCLR.RelaxVersioner.sln
run: dotnet pack -p:Configuration=Release -p:BuildIdentifier=${GITHUB_RUN_NUMBER} -o artifacts RelaxVersioner.sln

#-----------------------------------------------------------------------
# Test

- name: Test
run: dotnet test --no-restore --verbosity normal -p:CITest=True CenterCLR.RelaxVersioner.sln
run: dotnet test --no-restore --verbosity normal -p:CITest=True RelaxVersioner.sln
timeout-minutes: 2

#-----------------------------------------------------------------------
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 9 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/kekyo/CenterCLR.RelaxVersioner.git</RepositoryUrl>

<RepositoryUrl>https://github.com/kekyo/RelaxVersioner.git</RepositoryUrl>
<RootNamespace>RelaxVersioner</RootNamespace>
<Product>RelaxVersioner</Product>
<Trademark>RelaxVersioner</Trademark>
Expand All @@ -22,7 +22,7 @@
<Authors>Kouji Matsui (@kozy_kekyo, @kekyo@mastodon.cloud)</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<NoWarn>$(NoWarn);NU1605;NU1701;NU1803</NoWarn>
<NoWarn>$(NoWarn);NU1605;NU1701;NU1803;NU1902;NU1903;NETSDK1057;NETSDK1209</NoWarn>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand All @@ -40,6 +40,12 @@
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(BOOTSTRAP)' == 'True'">
<DefineConstants>$(DefineConstants);BOOTSTRAP</DefineConstants>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RV_BOOTSTRAP>True</RV_BOOTSTRAP>
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)' == 'Release'">
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
10 changes: 5 additions & 5 deletions PlayGround/CSharpNewTestProject/CSharpNewTestProject.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\CenterCLR.RelaxVersioner\build\RelaxVersioner.props" />
<Import Project="..\..\RelaxVersioner\build\RelaxVersioner.props" />
<PropertyGroup>
<_RVB_MSBuildTaskPath>$([System.IO.Path]::Combine('$(MSBuildThisFileDirectory)','..','..','CenterCLR.RelaxVersioner.Tasks','bin','$(Configuration)','$(_RVB_TaskPlatformName)','RelaxVersioner.Tasks.dll'))</_RVB_MSBuildTaskPath>
<_RVB_MSBuildTaskPath>$([System.IO.Path]::Combine('$(MSBuildThisFileDirectory)','..','..','RelaxVersioner.Tasks','bin','$(Configuration)','$(_RVB_TaskPlatformName)','RelaxVersioner.Tasks.dll'))</_RVB_MSBuildTaskPath>
</PropertyGroup>

<!-- ====================================================== -->

<PropertyGroup>
<OutputType>Exe</OutputType>
<!--<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>-->
<!--<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks>-->
<TargetFrameworks>net48</TargetFrameworks>
<PlatformTarget>x86</PlatformTarget>

Expand All @@ -18,9 +18,9 @@

<!-- ====================================================== -->

<Import Project="..\..\CenterCLR.RelaxVersioner\build\RelaxVersioner.targets" />
<Import Project="..\..\RelaxVersioner\build\RelaxVersioner.targets" />
<PropertyGroup>
<_RVB_ToolingDir>$([System.IO.Path]::Combine('$(MSBuildThisFileDirectory)','..','..','CenterCLR.RelaxVersioner','bin','$(Configuration)','$(_RVB_PlatformName)'))</_RVB_ToolingDir>
<_RVB_ToolingDir>$([System.IO.Path]::Combine('$(MSBuildThisFileDirectory)','..','..','RelaxVersioner','bin','$(Configuration)','$(_RVB_PlatformName)'))</_RVB_ToolingDir>
</PropertyGroup>

<Target Name="AB" AfterTargets="Compile">
Expand Down
2 changes: 1 addition & 1 deletion PlayGround/CSharpNewTestProject/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//[assembly: AssemblyCompany("")]
//[assembly: AssemblyProduct("CSharpTestProject")]
//[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
//[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: ComVisible(false)]
Expand Down
15 changes: 9 additions & 6 deletions README.ja.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# RelaxVersioner
![RelaxVersioner](Images/CenterCLR.RelaxVersioner.128.png)
![RelaxVersioner](Images/RelaxVersioner.128.png)

[English language is here](https://github.com/kekyo/CenterCLR.RelaxVersioner)
[English language is here](https://github.com/kekyo/RelaxVersioner)

# Status

Expand All @@ -10,7 +10,7 @@
| | master | devel |
|:---|:---|:---|
| Packages | [![NuGet RelaxVersioner (master)](https://img.shields.io/nuget/v/RelaxVersioner.svg?style=flat)](https://www.nuget.org/packages/RelaxVersioner) | [![MyGet RelaxVersioner (devel)](https://img.shields.io/myget/kekyo/v/RelaxVersioner.svg?style=flat&label=myget)](https://www.myget.org/feed/kekyo/package/nuget/RelaxVersioner)
| Continuous integration | [![RelaxVersioner CI build (master)](https://github.com/kekyo/CenterCLR.RelaxVersioner/workflows/.NET/badge.svg?branch=master)](https://github.com/kekyo/CenterCLR.RelaxVersioner/actions) | [![RelaxVersioner CI build (devel)](https://github.com/kekyo/CenterCLR.RelaxVersioner/workflows/.NET/badge.svg?branch=devel)](https://github.com/kekyo/CenterCLR.RelaxVersioner/actions)
| Continuous integration | [![RelaxVersioner CI build (master)](https://github.com/kekyo/RelaxVersioner/workflows/.NET/badge.svg?branch=master)](https://github.com/kekyo/RelaxVersioner/actions) | [![RelaxVersioner CI build (devel)](https://github.com/kekyo/RelaxVersioner/workflows/.NET/badge.svg?branch=devel)](https://github.com/kekyo/RelaxVersioner/actions)

## これは何?

Expand All @@ -19,7 +19,7 @@ Git タグ・ブランチベースの、全自動バージョン情報挿入パ
* RelaxVersionerのNuGetパッケージをインストールするだけで、Gitのタグ・ブランチ・コミットメッセージだけを使って、バージョン管理が出来ます。つまり、追加のツール操作が不要なため、Gitさえ知っていれば学習コストがほとんどなく、CI環境にも容易に対応できます。
* サポートしている言語と環境は、以下の通りです(恐らく、現在のほとんどの.NET開発環境に適合します):
* C#・F#・VB.NET・C++/CLI、そしてNuGetパッケージング (dotnet cli packコマンド)
* Visual Studio 2022/2019/2017/2015, Rider, dotnet SDK cli, `net7.0`, `net6.0`, `net5.0`, `netcoreapp3.1`, `netcoreapp2.2` 及び `net461` 以上の元で動作するMSBuild環境 (注: MSBuildの動作プラットフォームの事です、あなたがターゲットにしたいプロジェクトの事ではありません)、及びこれらを使用する任意のIDE。
* Visual Studio 2022/2019/2017/2015, Rider, dotnet SDK cli, .NET 8/7/6/5, .NET Core 3.1/2.2 及び .NET Framework 4.6.1 以上の元で動作するMSBuild環境 (注: MSBuildの動作プラットフォームの事です、あなたがターゲットにしたいプロジェクトの事ではありません)、及びこれらを使用する任意のIDE。
* ローカルのGitリポジトリから、自動的にタグ・ブランチの名称を取得し、アセンブリ属性に適用することが出来ます。
* AssemblyInfo.csファイルを直接変更しません。RelaxVersionerはテンポラリファイルに定義を出力し、それをコンパイルさせます。
* Visual Studio/MSBuildの中間出力フォルダーを自動的に使用するため、Gitリポジトリ内を汚すことがありません。
Expand Down Expand Up @@ -333,7 +333,7 @@ RelaxVersioner (や、その他の自動バージョニングツール) は、

そのため、build.yml (GitHub Actionsのスクリプト) に、
`fetch-depth: 0` を追加して下さい。
[このリポジトリで実際に使用している例を参照できます。](https://github.com/kekyo/CenterCLR.RelaxVersioner/blob/master/.github/workflows/build.yml#L11)
[このリポジトリで実際に使用している例を参照できます。](https://github.com/kekyo/RelaxVersioner/blob/master/.github/workflows/build.yml#L11)

### NuGetパッケージ生成にnuspecファイルを使用する

Expand Down Expand Up @@ -462,6 +462,9 @@ nuspecファイルを使ってパッケージを生成する場合は、デフ

## 履歴

* 3.2.20:
* .NET 8.0 RC1に対応しました。恐らくそのまま正式な.NET 8.0バージョンにも使用できますが、
.NET 8.0がリリースされたのちに再ビルドしたバージョンをリリースします。
* 3.2.0:
* GitReaderを1.4.0に上げました。
* 3.1.0:
Expand Down Expand Up @@ -545,7 +548,7 @@ nuspecファイルを使ってパッケージを生成する場合は、デフ
* リテラルシンボル定義の追加。"ThisAssembly"クラス(モジュール)内に定義されたシンボルを参照することで、リフレクションAPIを使用しないで各定義を使用することが出来ます。出力されるコードの例を参照。
* "TargetFramework" (tfm), "TargetFrameworkIdentity" (tfid), "TargetFrameworkVersion" (tfv), "TargetFrameworkProfile" (tfp) のそれぞれのキーをサポート。デフォルトのルールではtfmが出力されます。カスタムルールファイルの例を参照。
* パッケージサイズが小さくなりました。
* 破壊的変更: パッケージ名が"CenterCLR.RelaxVersioner"から"RelaxVersioner"に変更されました。古いパッケージを参照することは出来ますが、NuGetのリストには表示されなくなります。
* 破壊的変更: パッケージ名が"RelaxVersioner"から"RelaxVersioner"に変更されました。古いパッケージを参照することは出来ますが、NuGetのリストには表示されなくなります。
* 1.0.10:
* プロジェクト参照先のパッケージバージョンを誤って解釈する問題を修正 (NuGetの内部実装の変更による)
* 1.0.5:
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# RelaxVersioner
![RelaxVersioner](Images/CenterCLR.RelaxVersioner.128.png)
![RelaxVersioner](Images/RelaxVersioner.128.png)

[![Japanese language](Images/Japanese.256.png)](https://github.com/kekyo/CenterCLR.RelaxVersioner/blob/master/README.ja.md)
[![Japanese language](Images/Japanese.256.png)](https://github.com/kekyo/RelaxVersioner/blob/master/README.ja.md)

# Status

Expand All @@ -10,7 +10,7 @@
| | master | devel |
|:---|:---|:---|
| Packages | [![NuGet RelaxVersioner (master)](https://img.shields.io/nuget/v/RelaxVersioner.svg?style=flat)](https://www.nuget.org/packages/RelaxVersioner) | [![MyGet RelaxVersioner (devel)](https://img.shields.io/myget/kekyo/v/RelaxVersioner.svg?style=flat&label=myget)](https://www.myget.org/feed/kekyo/package/nuget/RelaxVersioner)
| Continuous integration | [![RelaxVersioner CI build (master)](https://github.com/kekyo/CenterCLR.RelaxVersioner/workflows/.NET/badge.svg?branch=master)](https://github.com/kekyo/CenterCLR.RelaxVersioner/actions) | [![RelaxVersioner CI build (devel)](https://github.com/kekyo/CenterCLR.RelaxVersioner/workflows/.NET/badge.svg?branch=devel)](https://github.com/kekyo/CenterCLR.RelaxVersioner/actions)
| Continuous integration | [![RelaxVersioner CI build (master)](https://github.com/kekyo/RelaxVersioner/workflows/.NET/badge.svg?branch=master)](https://github.com/kekyo/RelaxVersioner/actions) | [![RelaxVersioner CI build (devel)](https://github.com/kekyo/RelaxVersioner/workflows/.NET/badge.svg?branch=devel)](https://github.com/kekyo/RelaxVersioner/actions)

## What is this?

Expand All @@ -19,7 +19,7 @@ Git tag/branch based, full-automatic version information inserter.
* If you use RelaxVersioner, version handling ONLY use with Git tags/branches/commit messages. Of course you don't need more tooling knowledge, and easy integrates continuous-integration environments.
* Target language/environments (Probably fits most current .NET development environments):
* C#, F#, VB.NET, C++/CLI and NuGet packaging (dotnet cli packer).
* Visual Studio 2022/2019/2017/2015, Rider, dotnet SDK cli, MSBuild on `net7.0`, `net6.0`, `net5.0`, `netcoreapp3.1`, `netcoreapp2.2` and `net461` environment (NOT your project platform) and related IDEs.
* Visual Studio 2022/2019/2017/2015, Rider, dotnet SDK cli, MSBuild on .NET 8/7/6/5, .NET Core 3.1/2.2 and .NET Framework 4.6.1 environment (NOT your project platform) and related IDEs.
* Auto collect version information from local Git repository tags/branch name.
* Independent AssemblyInfo.cs file, generated code will output into a temporary file. (Not manipulate directly AssemblyInfo.cs file).
* Place source code location which isn't obstructive for Git. (ex: obj/Debug)
Expand Down Expand Up @@ -313,7 +313,7 @@ Because it makes better fast cloning.

RelaxVersioner (and other automated versioning tool) requires all commits for calculating version depth.
Apply `fetch-depth: 0` predication into your build.yml script.
[You can understand with this real script.](https://github.com/kekyo/CenterCLR.RelaxVersioner/blob/master/.github/workflows/build.yml#L11)
[You can understand with this real script.](https://github.com/kekyo/RelaxVersioner/blob/master/.github/workflows/build.yml#L11)

### Use nuspec file to generate NuGet package

Expand Down Expand Up @@ -441,6 +441,8 @@ When you are using a nuspec file to generate a NuGet package, there are addition

## History

* 3.2.20:
* .NET 8.0 RC1 is now supported. Although it can probably be used for the .NET 8.0 release without any modification, but will release a rebuilt version after .NET 8.0 is released.
* 3.2.0:
* Updated GitReader to 1.4.0.
* 3.1.0:
Expand Down Expand Up @@ -525,7 +527,7 @@ When you are using a nuspec file to generate a NuGet package, there are addition
* Added static literals. You can refer all symbols inside of "ThisAssembly" class/module, doesn't require using any reflection API.
* Added support keys "TargetFramework" (tfm), "TargetFrameworkIdentity" (tfid), "TargetFrameworkVersion" (tfv) and "TargetFrameworkProfile" (tfp). Only includes tfm by defaults. See also rule set file section.
* Reduced package size.
* Breaking change: Changed package naming from "CenterCLR.RelaxVersioner" to "RelaxVersioner". Old packages will make unlisting.
* Breaking change: Changed package naming from "RelaxVersioner" to "RelaxVersioner". Old packages will make unlisting.
* 1.0.10:
* Fixed failure aggregating referenced package versions (related changing nuget impls).
* 1.0.5:
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Nullable>enable</Nullable>
<TargetFrameworks>net48;net5.0;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net48;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<NoWarn>$(NoWarn);NU5104</NoWarn>
</PropertyGroup>

Expand All @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CenterCLR.RelaxVersioner.Core\CenterCLR.RelaxVersioner.Core.csproj" />
<ProjectReference Include="..\RelaxVersioner.Core\RelaxVersioner.Core.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("CenterCLR.RelaxVersioner.Core.Tests")]
[assembly: InternalsVisibleTo("RelaxVersioner.Core.Tests")]
31 changes: 31 additions & 0 deletions RelaxVersioner.Core/Properties/Bootstrap.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
////////////////////////////////////////////////////////////////////////////////////////
//
// RelaxVersioner - Git tag/branch based, full-automatic version information inserter.
// Copyright (c) Kouji Matsui (@kozy_kekyo, @kekyo@mastodon.cloud)
//
// Licensed under Apache-v2: https://opensource.org/licenses/Apache-2.0
//
////////////////////////////////////////////////////////////////////////////////////////

#if BOOTSTRAP
using System.Reflection;

[assembly: AssemblyVersion("0.0.1")]
[assembly: AssemblyFileVersion("2023.10.1.0")]
[assembly: AssemblyInformationalVersion("0.0.1-bootstrap")]

namespace RelaxVersioner
{
internal static class ThisAssembly
{
public const string @AssemblyVersion = @"0.0.1";
public const string @AssemblyFileVersion = @"2023.10.1.0";
public const string @AssemblyInformationalVersion = @"0.0.1-bootstrap";
public static class AssemblyMetadata
{
public const string @CommitId = @"bootstrap";
public const string @TargetFrameworkMoniker = @"bootstrap";
}
}
}
#endif
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net461;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<NoWarn>$(NoWarn);NU5104</NoWarn>

<AssemblyName>RelaxVersioner.Core</AssemblyName>
<AssemblyTitle>RelaxVersioner.Core</AssemblyTitle>

<PackageIcon>CenterCLR.RelaxVersioner.100.png</PackageIcon>
<PackageIcon>RelaxVersioner.100.png</PackageIcon>
<PackageTags>version;generator;git;auto;easy;generate;versioning;continuous;integration;delivery;tag;branch;assemblyinfo;msbuild</PackageTags>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GitReader" Version="1.4.0" />
<PackageReference Include="NamingFormatter" Version="2.2.0" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
<PackageReference Include="RelaxVersioner" Version="3.1.0" PrivateAssets="all" />
<PackageReference Condition="'$(RV_BOOTSTRAP)' != 'True'"
Include="RelaxVersioner" Version="*" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand All @@ -24,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<None Include="..\Images\CenterCLR.RelaxVersioner.100.png" Link="Images\CenterCLR.RelaxVersioner.100.png" Pack="true" PackagePath="\" />
<None Include="..\Images\RelaxVersioner.100.png" Link="Images\RelaxVersioner.100.png" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
<PackageReference Include="RelaxVersioner" Version="3.1.0" PrivateAssets="all" />
<PackageReference Condition="'$(RV_BOOTSTRAP)' != 'True'"
Include="RelaxVersioner" Version="*" PrivateAssets="all" />
</ItemGroup>

</Project>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CenterCLR.RelaxVersioner.Core", "CenterCLR.RelaxVersioner.Core\CenterCLR.RelaxVersioner.Core.csproj", "{AD40D6E7-1B5F-4734-919A-3C55F5A40CB9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RelaxVersioner.Core", "RelaxVersioner.Core\RelaxVersioner.Core.csproj", "{AD40D6E7-1B5F-4734-919A-3C55F5A40CB9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CenterCLR.RelaxVersioner", "CenterCLR.RelaxVersioner\CenterCLR.RelaxVersioner.csproj", "{F8E532DE-24B0-49BA-A667-6447CA4BAA89}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RelaxVersioner", "RelaxVersioner\RelaxVersioner.csproj", "{F8E532DE-24B0-49BA-A667-6447CA4BAA89}"
ProjectSection(ProjectDependencies) = postProject
{52B2423C-846D-4D9B-AB10-D5C593D3FB1D} = {52B2423C-846D-4D9B-AB10-D5C593D3FB1D}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CenterCLR.RelaxVersioner.Tasks", "CenterCLR.RelaxVersioner.Tasks\CenterCLR.RelaxVersioner.Tasks.csproj", "{52B2423C-846D-4D9B-AB10-D5C593D3FB1D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RelaxVersioner.Tasks", "RelaxVersioner.Tasks\RelaxVersioner.Tasks.csproj", "{52B2423C-846D-4D9B-AB10-D5C593D3FB1D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Loading

0 comments on commit d2d0935

Please sign in to comment.