This repository has been archived by the owner on Dec 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
dotnet-xdt.csproj
91 lines (77 loc) · 3.75 KB
/
dotnet-xdt.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<_ExeTFM>net461</_ExeTFM>
<_LibTFM>netstandard2.0</_LibTFM>
<_ToolTFM>netcoreapp2.1</_ToolTFM>
<TargetFrameworks>$(_ExeTFM);$(_LibTFM);$(_ToolTFM)</TargetFrameworks>
<TargetFrameworks Condition=" '$(As)' == 'exe' ">$(_ExeTFM)</TargetFrameworks>
<TargetFrameworks Condition=" '$(As)' == 'lib' ">$(_LibTFM)</TargetFrameworks>
<TargetFrameworks Condition=" '$(As)' == 'tool' ">$(_ToolTFM)</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<NullableContextOptions>$(Nullable)</NullableContextOptions>
<Features>strict</Features>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<OutputType>Exe</OutputType>
<RunAnalyzers>false</RunAnalyzers>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<RootNamespace>DotNet.Xdt</RootNamespace>
<AssemblyName>dotnet-xdt</AssemblyName>
<FileVersion>2.2.1</FileVersion>
<Version>$(FileVersion)</Version>
<_ReleaseNotes>
Enable [RollForward=Major](https://docs.microsoft.com/en-us/dotnet/core/whats-new/dotnet-core-3-0#major-version-roll-forward) to allow running `dotnet-xdt` on .NET Core 3.x and later versions.
Minor deterministic build and SourceLink support improvements.
</_ReleaseNotes>
</PropertyGroup>
<PropertyGroup Label="Library" Condition=" '$(TargetFrameworks)' == '$(_LibTFM)' ">
<OutputType>Library</OutputType>
<AssemblyName>DotNet.Xdt</AssemblyName>
<AssemblyTitle>.NET Standard 2.0 library for XDT (XML Document Transform).</AssemblyTitle>
<_PackageTags>netstandard20</_PackageTags>
</PropertyGroup>
<PropertyGroup Label="GlobalTool" Condition=" '$(TargetFrameworks)' == '$(_ToolTFM)' ">
<RollForward>Major</RollForward>
<PackAsTool>true</PackAsTool>
<AssemblyTitle>XDT (XML Document Transform) tool for .NET Core.</AssemblyTitle>
<_PackageTags>netcoreapp21;global-tool</_PackageTags>
</PropertyGroup>
<PropertyGroup Label="Executable" Condition=" '$(TargetFrameworks)' == '$(_ExeTFM)' ">
<IsPackable>false</IsPackable>
<AssemblyTitle>XDT (XML Document Transform) tool for .NET 4.6.1.</AssemblyTitle>
</PropertyGroup>
<PropertyGroup Label="Package">
<Description>$(AssemblyTitle)</Description>
<PackageVersion>$(Version)</PackageVersion>
<PackageId>$(AssemblyName)</PackageId>
<Authors>nil4 <https://github.com/nil4></Authors>
<PackageTags>$(_PackageTags);xdt;transform;xml</PackageTags>
<PackageReleaseNotes>$(_ReleaseNotes)</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/nil4/dotnet-transform-xdt</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/nil4/dotnet-transform-xdt.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<MinClientVersion>4.0</MinClientVersion>
</PropertyGroup>
<ItemGroup Label="SourceLink">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Program.cs" Condition=" '$(OutputType)' != 'Exe' " />
<EmbeddedResource Update="SR.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>SR.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Update="SR.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>SR.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>