File tree Expand file tree Collapse file tree 4 files changed +27
-18
lines changed Expand file tree Collapse file tree 4 files changed +27
-18
lines changed Original file line number Diff line number Diff line change
1
+ # Each line is a file pattern followed by one or more owners
2
+ # See: https://help.github.com/articles/about-codeowners/
3
+
4
+ # These owners will be the default owners for everything in the repo
5
+ # Unless a later match takes precedence, they will be requested for
6
+ # review when someone opens a pull request
7
+
8
+ * @ biplovkc
Original file line number Diff line number Diff line change 55
55
56
56
- name : Create tag
57
57
uses : actions/github-script@v5
58
+ if : ${{ always() }}
58
59
with :
59
60
script : |
60
61
github.rest.git.createRef({
Original file line number Diff line number Diff line change 12
12
<Description >Useful classes and interfaces to implement domain driven design pattern</Description >
13
13
<LangVersion >latest</LangVersion >
14
14
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
15
- </PropertyGroup >
15
+ <DebugSymbols >true</DebugSymbols >
16
+ <IncludeSymbols >true</IncludeSymbols >
17
+ <SymbolPackageFormat >snupkg</SymbolPackageFormat >
18
+ <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
19
+ <PublishRepositoryUrl >true</PublishRepositoryUrl >
16
20
17
- <PropertyGroup >
18
- <PackageLicenseFile >LICENSE</PackageLicenseFile >
19
- </PropertyGroup >
21
+ <!-- Embed source files that are not tracked by the source control manager in the PDB -->
22
+ <EmbedUntrackedSources >true</EmbedUntrackedSources >
20
23
24
+ <!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
25
+ <DebugType >embedded</DebugType >
26
+ <PackageLicenseExpression >MIT</PackageLicenseExpression >
27
+ </PropertyGroup >
28
+ <PropertyGroup Condition =" '$(GITHUB_ACTIONS)' == 'true'" >
29
+ <ContinuousIntegrationBuild >true</ContinuousIntegrationBuild >
30
+ </PropertyGroup >
21
31
<ItemGroup >
22
- <None Include =" ..\LICENSE" Pack =" true" PackagePath =" " />
32
+ <None Include =" ../README.md" Pack =" true" PackagePath =" ." />
33
+ </ItemGroup >
34
+ <ItemGroup >
35
+ <PackageReference Include =" Microsoft.SourceLink.Github" Version =" 1.1.1" PrivateAsserts =" all" />
23
36
</ItemGroup >
24
-
25
37
</Project >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments