This repository was archived by the owner on May 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +29
-10
lines changed
samples/XCT.Sample.Android Expand file tree Collapse file tree 4 files changed +29
-10
lines changed Original file line number Diff line number Diff line change 3
3
4
4
<PropertyGroup >
5
5
<LangVersion >8.0</LangVersion >
6
- <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
7
- <PublishRepositoryUrl >true</PublishRepositoryUrl >
8
- <!-- Embed source files that are not tracked by the source control manager in the PDB -->
9
- <EmbedUntrackedSources >true</EmbedUntrackedSources >
10
- <!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
11
- <IncludeSymbols >true</IncludeSymbols >
12
- <SymbolPackageFormat >snupkg</SymbolPackageFormat >
13
- <DebugType >embedded</DebugType >
14
6
</PropertyGroup >
15
7
8
+
16
9
<PropertyGroup >
17
10
<CodeAnalysisRuleSet >$(MSBuildThisFileDirectory)Xamarin.CommunityToolkit.ruleset</CodeAnalysisRuleSet >
18
11
<TreatWarningsAsErrors >false</TreatWarningsAsErrors >
Original file line number Diff line number Diff line change 25
25
</PropertyGroup >
26
26
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
27
27
<DebugSymbols >true</DebugSymbols >
28
- <DebugType >portable </DebugType >
28
+ <DebugType >full </DebugType >
29
29
<Optimize >false</Optimize >
30
30
<OutputPath >bin\Debug</OutputPath >
31
31
<DefineConstants >DEBUG;</DefineConstants >
Original file line number Diff line number Diff line change 30
30
<PackageProjectUrl >https://github.com/xamarin/XamarinCommunityToolkit</PackageProjectUrl >
31
31
<Configurations >Debug;Release</Configurations >
32
32
<EnableDefaultCompileItems >false</EnableDefaultCompileItems >
33
+ <DebugType >portable</DebugType >
33
34
</PropertyGroup >
34
35
<PropertyGroup Condition =" '$(Configuration)'=='Debug' " >
35
36
<!-- Manage TargetFrameworks for development (Debug Mode) -->
63
64
<None Include =" ..\..\..\LICENSE" PackagePath =" " Pack =" true" />
64
65
<None Include =" ..\..\..\assets\XamarinCommunityToolkit_128x128.png" PackagePath =" icon.png" Pack =" true" />
65
66
<PackageReference Include =" Xamarin.Forms" Version =" 5.0.0.1874" />
66
- <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.0.0" PrivateAssets =" All" />
67
67
</ItemGroup >
68
68
<ItemGroup Condition =" $(TargetFramework.StartsWith('netstandard')) " >
69
69
<Compile Include =" **/*.netstandard.cs" />
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
+ <PropertyGroup Condition =" '$(Configuration)'=='Release' And '$(OS)' == 'Windows_NT' " >
4
+ <DebugType >embedded</DebugType >
5
+ <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
6
+ <PublishRepositoryUrl >true</PublishRepositoryUrl >
7
+ <!-- Embed source files that are not tracked by the source control manager in the PDB -->
8
+ <EmbedUntrackedSources >true</EmbedUntrackedSources >
9
+ <!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
10
+ <IncludeSymbols >true</IncludeSymbols >
11
+ <SymbolPackageFormat >snupkg</SymbolPackageFormat >
12
+ </PropertyGroup >
13
+
14
+ <ItemGroup Condition =" '$(Configuration)'=='Release'" >
15
+ <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.0.0" PrivateAssets =" All" />
16
+ </ItemGroup >
17
+
18
+ <PropertyGroup Condition =" '$(Configuration)'=='DEBUG' And '$(OS)' == 'Windows_NT' " >
19
+ <DebugType >full</DebugType >
20
+ <DebugSymbols >true</DebugSymbols >
21
+ </PropertyGroup >
22
+
23
+ <Import Project =" ../Directory.Build.props" />
24
+
25
+
26
+ </Project >
You can’t perform that action at this time.
0 commit comments