Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit b91ffe1

Browse files
committed
1.清理文件;2添加打包项目;
1 parent 20f6a38 commit b91ffe1

28 files changed

+861
-1705
lines changed

.gitignore

Lines changed: 40 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

66
# User-specific files
7+
*.rsuser
78
*.suo
89
*.user
910
*.userosscache
@@ -12,17 +13,27 @@
1213
# User-specific files (MonoDevelop/Xamarin Studio)
1314
*.userprefs
1415

16+
# Mono auto generated files
17+
mono_crash.*
18+
1519
# Build results
1620
[Dd]ebug/
1721
[Dd]ebugPublic/
1822
[Rr]elease/
1923
[Rr]eleases/
2024
x64/
2125
x86/
26+
[Aa][Rr][Mm]/
27+
[Aa][Rr][Mm]64/
2228
bld/
2329
[Bb]in/
2430
[Oo]bj/
2531
[Ll]og/
32+
[Ll]ogs/
33+
34+
# Advanced Installer Build results
35+
Setup Files/
36+
*cache/
2637

2738
# Visual Studio 2015/2017 cache/options directory
2839
.vs/
@@ -36,9 +47,10 @@ Generated\ Files/
3647
[Tt]est[Rr]esult*/
3748
[Bb]uild[Ll]og.*
3849

39-
# NUNIT
50+
# NUnit
4051
*.VisualState.xml
4152
TestResult.xml
53+
nunit-*.xml
4254

4355
# Build Results of an ATL Project
4456
[Dd]ebugPS/
@@ -52,15 +64,14 @@ BenchmarkDotNet.Artifacts/
5264
project.lock.json
5365
project.fragment.lock.json
5466
artifacts/
55-
**/Properties/launchSettings.json
5667

5768
# StyleCop
5869
StyleCopReport.xml
5970

6071
# Files built by Visual Studio
6172
*_i.c
6273
*_p.c
63-
*_i.h
74+
*_h.h
6475
*.ilk
6576
*.meta
6677
*.obj
@@ -77,6 +88,7 @@ StyleCopReport.xml
7788
*.tlh
7889
*.tmp
7990
*.tmp_proj
91+
*_wpftmp.csproj
8092
*.log
8193
*.vspscc
8294
*.vssscc
@@ -119,9 +131,6 @@ _ReSharper*/
119131
*.[Rr]e[Ss]harper
120132
*.DotSettings.user
121133

122-
# JustCode is a .NET coding add-in
123-
.JustCode
124-
125134
# TeamCity is a build add-in
126135
_TeamCity*
127136

@@ -179,6 +188,8 @@ PublishScripts/
179188

180189
# NuGet Packages
181190
*.nupkg
191+
# NuGet Symbol Packages
192+
*.snupkg
182193
# The packages folder can be ignored because of Package Restore
183194
**/[Pp]ackages/*
184195
# except build/, which is used as an MSBuild target.
@@ -203,12 +214,14 @@ BundleArtifacts/
203214
Package.StoreAssociation.xml
204215
_pkginfo.txt
205216
*.appx
217+
*.appxbundle
218+
*.appxupload
206219

207220
# Visual Studio cache files
208221
# files ending in .cache can be ignored
209222
*.[Cc]ache
210223
# but keep track of directories ending in .cache
211-
!*.[Cc]ache/
224+
!?*.[Cc]ache/
212225

213226
# Others
214227
ClientBin/
@@ -221,7 +234,7 @@ ClientBin/
221234
*.publishsettings
222235
orleans.codegen.cs
223236

224-
# Including strong name files can present a security risk
237+
# Including strong name files can present a security risk
225238
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
226239
#*.snk
227240

@@ -252,6 +265,9 @@ ServiceFabricBackup/
252265
*.bim.layout
253266
*.bim_*.settings
254267
*.rptproj.rsuser
268+
*- [Bb]ackup.rdl
269+
*- [Bb]ackup ([0-9]).rdl
270+
*- [Bb]ackup ([0-9][0-9]).rdl
255271

256272
# Microsoft Fakes
257273
FakesAssemblies/
@@ -287,12 +303,8 @@ paket-files/
287303
# FAKE - F# Make
288304
.fake/
289305

290-
# JetBrains Rider
291-
.idea/
292-
*.sln.iml
293-
294-
# CodeRush
295-
.cr/
306+
# CodeRush personal settings
307+
.cr/personal
296308

297309
# Python Tools for Visual Studio (PTVS)
298310
__pycache__/
@@ -317,7 +329,7 @@ __pycache__/
317329
# OpenCover UI analysis results
318330
OpenCover/
319331

320-
# Azure Stream Analytics local run output
332+
# Azure Stream Analytics local run output
321333
ASALocalRun/
322334

323335
# MSBuild Binary and Structured Log
@@ -326,5 +338,17 @@ ASALocalRun/
326338
# NVidia Nsight GPU debugger configuration file
327339
*.nvuser
328340

329-
# MFractors (Xamarin productivity tool) working folder
341+
# MFractors (Xamarin productivity tool) working folder
330342
.mfractor/
343+
344+
# Local History for Visual Studio
345+
.localhistory/
346+
347+
# BeatPulse healthcheck temp database
348+
healthchecksdb
349+
350+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
351+
MigrationBackup/
352+
353+
# Ionide (cross platform F# VS Code tools) working folder
354+
.ionide/

DuSwToglTF/Addin.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public enum SaveCommamds
7878
{
7979
[CommandItemInfo(true,true,WorkspaceTypes_e.Part | WorkspaceTypes_e.Assembly,true)]
8080
[Title("glTFExporter")]
81+
[Icon(typeof(Properties.Resource),nameof(Properties.Resource.gltf))]
8182
SaveAsglTF
8283
}
8384
}

DuSwToglTF/AssemblyInfo.cs

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)