Skip to content

Commit d01a7c5

Browse files
2 parents 581d3bd + 4e8427c commit d01a7c5

5 files changed

Lines changed: 1211 additions & 1177 deletions

File tree

.github/workflows/vale.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: vale-validation
2+
on:
3+
pull_request:
4+
paths:
5+
- README.md
6+
7+
jobs:
8+
vale:
9+
name: runner / vale
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: clone repo
13+
uses: actions/checkout@v4
14+
- name: clone vale-styles repo
15+
uses: actions/checkout@v4
16+
with:
17+
repository: DevExpress/vale-styles
18+
path: vale-styles
19+
ssh-key: ${{ secrets.VALE_STYLES_ACCESS_KEY }}
20+
- name: copy vale rules to the root repo
21+
run: shopt -s dotglob && cp -r ./vale-styles/vale/* .
22+
- name: vale linter check
23+
uses: DevExpress/vale-action@reviewdog
24+
with:
25+
files: README.md
26+
fail_on_error: true
27+
filter_mode: nofilter
28+
reporter: github-check

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @DevExpressExampleBot

CPB/ReportTemplate.cbproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
33
<ProjectGuid>{78325D59-9C55-4DF5-9E88-7E84FAB72DB5}</ProjectGuid>
44
<ProjectVersion>20.3</ProjectVersion>
@@ -1287,15 +1287,17 @@ $(PostBuildEvent)]]></PostBuildEvent>
12871287
<PreBuildEventIgnoreExitCode>False</PreBuildEventIgnoreExitCode>
12881288
<PreLinkEvent/>
12891289
<PreLinkEventIgnoreExitCode>False</PreLinkEventIgnoreExitCode>
1290-
<PostBuildEvent>copy /Y &quot;$(BDS)\Redist\win64\WebView2Loader.dll&quot; $(OUTPUTDIR)</PostBuildEvent>
1290+
<PostBuildEvent>copy /Y &quot;$(BDS)\Redist\win64\WebView2Loader.dll&quot; $(OUTPUTDIR)
1291+
</PostBuildEvent>
12911292
<PostBuildEventIgnoreExitCode>False</PostBuildEventIgnoreExitCode>
12921293
</PropertyGroup>
12931294
<PropertyGroup Condition="'$(Config)'=='Release' And '$(Platform)'=='Win64x'">
12941295
<PreBuildEvent/>
12951296
<PreBuildEventIgnoreExitCode>False</PreBuildEventIgnoreExitCode>
12961297
<PreLinkEvent/>
12971298
<PreLinkEventIgnoreExitCode>False</PreLinkEventIgnoreExitCode>
1298-
<PostBuildEvent>copy /Y &quot;$(BDS)\Redist\win64\WebView2Loader.dll&quot; $(OUTPUTDIR)</PostBuildEvent>
1299+
<PostBuildEvent>copy /Y &quot;$(BDS)\Redist\win64\WebView2Loader.dll&quot; $(OUTPUTDIR)
1300+
</PostBuildEvent>
12991301
<PostBuildEventIgnoreExitCode>False</PostBuildEventIgnoreExitCode>
13001302
</PropertyGroup>
13011303
</Project>

0 commit comments

Comments
 (0)