diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-12-22 09:55:02 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2018-12-22 10:01:46 -0800 |
| commit | 8f18a68edca97a944b2fbfeab7a41596b159f146 (patch) | |
| tree | 137c3042865e32bcfcc484df16bbf46e3bc2bbfa | |
| parent | f429f6c3710a361446c32d54f398c6db5db89620 (diff) | |
| download | wix-8f18a68edca97a944b2fbfeab7a41596b159f146.tar.gz wix-8f18a68edca97a944b2fbfeab7a41596b159f146.tar.bz2 wix-8f18a68edca97a944b2fbfeab7a41596b159f146.zip | |
Update to latest .gitignore and prep for new NuGet license format
| -rw-r--r-- | .gitignore | 72 | ||||
| -rw-r--r-- | src/Directory.Build.props | 1 | ||||
| -rw-r--r-- | src/dutil/dutil.nuspec | 3 |
3 files changed, 62 insertions, 14 deletions
| @@ -4,6 +4,7 @@ | |||
| 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore |
| 5 | 5 | ||
| 6 | # User-specific files | 6 | # User-specific files |
| 7 | *.rsuser | ||
| 7 | *.suo | 8 | *.suo |
| 8 | *.user | 9 | *.user |
| 9 | *.userosscache | 10 | *.userosscache |
| @@ -19,16 +20,21 @@ | |||
| 19 | [Rr]eleases/ | 20 | [Rr]eleases/ |
| 20 | x64/ | 21 | x64/ |
| 21 | x86/ | 22 | x86/ |
| 23 | [Aa][Rr][Mm]/ | ||
| 24 | [Aa][Rr][Mm]64/ | ||
| 22 | bld/ | 25 | bld/ |
| 23 | [Bb]in/ | 26 | [Bb]in/ |
| 24 | [Oo]bj/ | 27 | [Oo]bj/ |
| 25 | [Ll]og/ | 28 | [Ll]og/ |
| 26 | 29 | ||
| 27 | # Visual Studio 2015 cache/options directory | 30 | # Visual Studio 2015/2017 cache/options directory |
| 28 | .vs/ | 31 | .vs/ |
| 29 | # Uncomment if you have tasks that create the project's static files in wwwroot | 32 | # Uncomment if you have tasks that create the project's static files in wwwroot |
| 30 | #wwwroot/ | 33 | #wwwroot/ |
| 31 | 34 | ||
| 35 | # Visual Studio 2017 auto generated files | ||
| 36 | Generated\ Files/ | ||
| 37 | |||
| 32 | # MSTest test Results | 38 | # MSTest test Results |
| 33 | [Tt]est[Rr]esult*/ | 39 | [Tt]est[Rr]esult*/ |
| 34 | [Bb]uild[Ll]og.* | 40 | [Bb]uild[Ll]og.* |
| @@ -49,16 +55,21 @@ BenchmarkDotNet.Artifacts/ | |||
| 49 | project.lock.json | 55 | project.lock.json |
| 50 | project.fragment.lock.json | 56 | project.fragment.lock.json |
| 51 | artifacts/ | 57 | artifacts/ |
| 52 | **/Properties/launchSettings.json | ||
| 53 | 58 | ||
| 59 | # StyleCop | ||
| 60 | StyleCopReport.xml | ||
| 61 | |||
| 62 | # Files built by Visual Studio | ||
| 54 | *_i.c | 63 | *_i.c |
| 55 | *_p.c | 64 | *_p.c |
| 56 | *_i.h | 65 | *_h.h |
| 57 | *.ilk | 66 | *.ilk |
| 58 | *.meta | 67 | *.meta |
| 59 | *.obj | 68 | *.obj |
| 69 | *.iobj | ||
| 60 | *.pch | 70 | *.pch |
| 61 | *.pdb | 71 | *.pdb |
| 72 | *.ipdb | ||
| 62 | *.pgc | 73 | *.pgc |
| 63 | *.pgd | 74 | *.pgd |
| 64 | *.rsp | 75 | *.rsp |
| @@ -68,6 +79,7 @@ artifacts/ | |||
| 68 | *.tlh | 79 | *.tlh |
| 69 | *.tmp | 80 | *.tmp |
| 70 | *.tmp_proj | 81 | *.tmp_proj |
| 82 | *_wpftmp.csproj | ||
| 71 | *.log | 83 | *.log |
| 72 | *.vspscc | 84 | *.vspscc |
| 73 | *.vssscc | 85 | *.vssscc |
| @@ -96,6 +108,9 @@ ipch/ | |||
| 96 | *.vspx | 108 | *.vspx |
| 97 | *.sap | 109 | *.sap |
| 98 | 110 | ||
| 111 | # Visual Studio Trace Files | ||
| 112 | *.e2e | ||
| 113 | |||
| 99 | # TFS 2012 Local Workspace | 114 | # TFS 2012 Local Workspace |
| 100 | $tf/ | 115 | $tf/ |
| 101 | 116 | ||
| @@ -116,6 +131,10 @@ _TeamCity* | |||
| 116 | # DotCover is a Code Coverage Tool | 131 | # DotCover is a Code Coverage Tool |
| 117 | *.dotCover | 132 | *.dotCover |
| 118 | 133 | ||
| 134 | # AxoCover is a Code Coverage Tool | ||
| 135 | .axoCover/* | ||
| 136 | !.axoCover/settings.json | ||
| 137 | |||
| 119 | # Visual Studio code coverage results | 138 | # Visual Studio code coverage results |
| 120 | *.coverage | 139 | *.coverage |
| 121 | *.coveragexml | 140 | *.coveragexml |
| @@ -164,11 +183,11 @@ PublishScripts/ | |||
| 164 | # NuGet Packages | 183 | # NuGet Packages |
| 165 | *.nupkg | 184 | *.nupkg |
| 166 | # The packages folder can be ignored because of Package Restore | 185 | # The packages folder can be ignored because of Package Restore |
| 167 | **/packages/* | 186 | **/[Pp]ackages/* |
| 168 | # except build/, which is used as an MSBuild target. | 187 | # except build/, which is used as an MSBuild target. |
| 169 | !**/packages/build/ | 188 | !**/[Pp]ackages/build/ |
| 170 | # Uncomment if necessary however generally it will be regenerated when needed | 189 | # Uncomment if necessary however generally it will be regenerated when needed |
| 171 | #!**/packages/repositories.config | 190 | #!**/[Pp]ackages/repositories.config |
| 172 | # NuGet v3's project.json files produces more ignorable files | 191 | # NuGet v3's project.json files produces more ignorable files |
| 173 | *.nuget.props | 192 | *.nuget.props |
| 174 | *.nuget.targets | 193 | *.nuget.targets |
| @@ -192,7 +211,7 @@ _pkginfo.txt | |||
| 192 | # files ending in .cache can be ignored | 211 | # files ending in .cache can be ignored |
| 193 | *.[Cc]ache | 212 | *.[Cc]ache |
| 194 | # but keep track of directories ending in .cache | 213 | # but keep track of directories ending in .cache |
| 195 | !*.[Cc]ache/ | 214 | !?*.[Cc]ache/ |
| 196 | 215 | ||
| 197 | # Others | 216 | # Others |
| 198 | ClientBin/ | 217 | ClientBin/ |
| @@ -205,9 +224,15 @@ ClientBin/ | |||
| 205 | *.publishsettings | 224 | *.publishsettings |
| 206 | orleans.codegen.cs | 225 | orleans.codegen.cs |
| 207 | 226 | ||
| 227 | # Including strong name files can present a security risk | ||
| 228 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) | ||
| 229 | #*.snk | ||
| 230 | |||
| 208 | # Since there are multiple workflows, uncomment next line to ignore bower_components | 231 | # Since there are multiple workflows, uncomment next line to ignore bower_components |
| 209 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) | 232 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
| 210 | #bower_components/ | 233 | #bower_components/ |
| 234 | # ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true | ||
| 235 | **/wwwroot/lib/ | ||
| 211 | 236 | ||
| 212 | # RIA/Silverlight projects | 237 | # RIA/Silverlight projects |
| 213 | Generated_Code/ | 238 | Generated_Code/ |
| @@ -219,6 +244,8 @@ _UpgradeReport_Files/ | |||
| 219 | Backup*/ | 244 | Backup*/ |
| 220 | UpgradeLog*.XML | 245 | UpgradeLog*.XML |
| 221 | UpgradeLog*.htm | 246 | UpgradeLog*.htm |
| 247 | ServiceFabricBackup/ | ||
| 248 | *.rptproj.bak | ||
| 222 | 249 | ||
| 223 | # SQL Server files | 250 | # SQL Server files |
| 224 | *.mdf | 251 | *.mdf |
| @@ -229,6 +256,7 @@ UpgradeLog*.htm | |||
| 229 | *.rdl.data | 256 | *.rdl.data |
| 230 | *.bim.layout | 257 | *.bim.layout |
| 231 | *.bim_*.settings | 258 | *.bim_*.settings |
| 259 | *.rptproj.rsuser | ||
| 232 | 260 | ||
| 233 | # Microsoft Fakes | 261 | # Microsoft Fakes |
| 234 | FakesAssemblies/ | 262 | FakesAssemblies/ |
| @@ -240,9 +268,6 @@ FakesAssemblies/ | |||
| 240 | .ntvs_analysis.dat | 268 | .ntvs_analysis.dat |
| 241 | node_modules/ | 269 | node_modules/ |
| 242 | 270 | ||
| 243 | # Typescript v1 declaration files | ||
| 244 | typings/ | ||
| 245 | |||
| 246 | # Visual Studio 6 build log | 271 | # Visual Studio 6 build log |
| 247 | *.plg | 272 | *.plg |
| 248 | 273 | ||
| @@ -271,8 +296,8 @@ paket-files/ | |||
| 271 | .idea/ | 296 | .idea/ |
| 272 | *.sln.iml | 297 | *.sln.iml |
| 273 | 298 | ||
| 274 | # CodeRush | 299 | # CodeRush personal settings |
| 275 | .cr/ | 300 | .cr/personal |
| 276 | 301 | ||
| 277 | # Python Tools for Visual Studio (PTVS) | 302 | # Python Tools for Visual Studio (PTVS) |
| 278 | __pycache__/ | 303 | __pycache__/ |
| @@ -292,4 +317,25 @@ __pycache__/ | |||
| 292 | *.btp.cs | 317 | *.btp.cs |
| 293 | *.btm.cs | 318 | *.btm.cs |
| 294 | *.odx.cs | 319 | *.odx.cs |
| 295 | *.xsd.cs \ No newline at end of file | 320 | *.xsd.cs |
| 321 | |||
| 322 | # OpenCover UI analysis results | ||
| 323 | OpenCover/ | ||
| 324 | |||
| 325 | # Azure Stream Analytics local run output | ||
| 326 | ASALocalRun/ | ||
| 327 | |||
| 328 | # MSBuild Binary and Structured Log | ||
| 329 | *.binlog | ||
| 330 | |||
| 331 | # NVidia Nsight GPU debugger configuration file | ||
| 332 | *.nvuser | ||
| 333 | |||
| 334 | # MFractors (Xamarin productivity tool) working folder | ||
| 335 | .mfractor/ | ||
| 336 | |||
| 337 | # Local History for Visual Studio | ||
| 338 | .localhistory/ | ||
| 339 | |||
| 340 | # BeatPulse healthcheck temp database | ||
| 341 | healthchecksdb | ||
diff --git a/src/Directory.Build.props b/src/Directory.Build.props index f09c622b..e853e22d 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | <Authors>WiX Toolset Team</Authors> | 17 | <Authors>WiX Toolset Team</Authors> |
| 18 | <Company>WiX Toolset</Company> | 18 | <Company>WiX Toolset</Company> |
| 19 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> | 19 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> |
| 20 | <PackageLicenseExpression>MS-RL</PackageLicenseExpression> | ||
| 20 | <Product>WiX Toolset</Product> | 21 | <Product>WiX Toolset</Product> |
| 21 | </PropertyGroup> | 22 | </PropertyGroup> |
| 22 | 23 | ||
diff --git a/src/dutil/dutil.nuspec b/src/dutil/dutil.nuspec index fd40b1d9..7cf7483e 100644 --- a/src/dutil/dutil.nuspec +++ b/src/dutil/dutil.nuspec | |||
| @@ -5,7 +5,8 @@ | |||
| 5 | <version>$version$</version> | 5 | <version>$version$</version> |
| 6 | <authors>$authors$</authors> | 6 | <authors>$authors$</authors> |
| 7 | <owners>$authors$</owners> | 7 | <owners>$authors$</owners> |
| 8 | <licenseUrl>https://github.com/wixtoolset/dutil/blob/master/LICENSE.TXT</licenseUrl> | 8 | <!-- <license type="expression">MS-RL</license> --> |
| 9 | <licenseUrl>https://licenses.nuget.org/MS-RL</licenseUrl> | ||
| 9 | <projectUrl>https://github.com/wixtoolset/dutil</projectUrl> | 10 | <projectUrl>https://github.com/wixtoolset/dutil</projectUrl> |
| 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
| 11 | <description>$description$</description> | 12 | <description>$description$</description> |
